/** * 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 { TrackDownloadCountResponseData } from './TrackDownloadCountResponseData'; /** * * @export * @interface TrackDownloadCountResponse */ export interface TrackDownloadCountResponse { /** * * @type {TrackDownloadCountResponseData} * @memberof TrackDownloadCountResponse */ data: TrackDownloadCountResponseData; } /** * Check if a given object implements the TrackDownloadCountResponse interface. */ export declare function instanceOfTrackDownloadCountResponse(value: object): value is TrackDownloadCountResponse; export declare function TrackDownloadCountResponseFromJSON(json: any): TrackDownloadCountResponse; export declare function TrackDownloadCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackDownloadCountResponse; export declare function TrackDownloadCountResponseToJSON(value?: TrackDownloadCountResponse | null): any;