/** * 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. */ import type { BestSellingItem } from './BestSellingItem'; import type { Related } from './Related'; import type { VersionMetadata } from './VersionMetadata'; /** * * @export * @interface BestSellingResponse */ export interface BestSellingResponse { /** * * @type {number} * @memberof BestSellingResponse */ latestChainBlock: number; /** * * @type {number} * @memberof BestSellingResponse */ latestIndexedBlock: number; /** * * @type {number} * @memberof BestSellingResponse */ latestChainSlotPlays: number; /** * * @type {number} * @memberof BestSellingResponse */ latestIndexedSlotPlays: number; /** * * @type {string} * @memberof BestSellingResponse */ signature: string; /** * * @type {string} * @memberof BestSellingResponse */ timestamp: string; /** * * @type {VersionMetadata} * @memberof BestSellingResponse */ version: VersionMetadata; /** * * @type {Array} * @memberof BestSellingResponse */ data?: Array; /** * * @type {Related} * @memberof BestSellingResponse */ related?: Related; } /** * Check if a given object implements the BestSellingResponse interface. */ export declare function instanceOfBestSellingResponse(value: object): value is BestSellingResponse; export declare function BestSellingResponseFromJSON(json: any): BestSellingResponse; export declare function BestSellingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BestSellingResponse; export declare function BestSellingResponseToJSON(value?: BestSellingResponse | null): any;