/** * 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 TrackDownloadCountResponseData */ export interface TrackDownloadCountResponseData { /** * Track ID (hash) * @type {string} * @memberof TrackDownloadCountResponseData */ id: string; /** * Full track + all stems (parent) or stem-only (stem) * @type {number} * @memberof TrackDownloadCountResponseData */ downloadCount: number; } /** * Check if a given object implements the TrackDownloadCountResponseData interface. */ export declare function instanceOfTrackDownloadCountResponseData(value: object): value is TrackDownloadCountResponseData; export declare function TrackDownloadCountResponseDataFromJSON(json: any): TrackDownloadCountResponseData; export declare function TrackDownloadCountResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackDownloadCountResponseData; export declare function TrackDownloadCountResponseDataToJSON(value?: TrackDownloadCountResponseData | null): any;