/** * Audius API * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface BestSellingItem */ export interface BestSellingItem { /** * * @type {string} * @memberof BestSellingItem */ contentId: string; /** * * @type {string} * @memberof BestSellingItem */ contentType?: BestSellingItemContentTypeEnum; /** * * @type {string} * @memberof BestSellingItem */ title: string; /** * * @type {string} * @memberof BestSellingItem */ ownerId: string; } /** * @export */ export declare const BestSellingItemContentTypeEnum: { readonly Track: "track"; readonly Album: "album"; }; export type BestSellingItemContentTypeEnum = typeof BestSellingItemContentTypeEnum[keyof typeof BestSellingItemContentTypeEnum]; /** * Check if a given object implements the BestSellingItem interface. */ export declare function instanceOfBestSellingItem(value: object): value is BestSellingItem; export declare function BestSellingItemFromJSON(json: any): BestSellingItem; export declare function BestSellingItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): BestSellingItem; export declare function BestSellingItemToJSON(value?: BestSellingItem | null): any;