/** * 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 UserTracksDownloadCountResponse */ export interface UserTracksDownloadCountResponse { /** * Total download count for all tracks (and stems) owned by the user * @type {number} * @memberof UserTracksDownloadCountResponse */ data: number; } /** * Check if a given object implements the UserTracksDownloadCountResponse interface. */ export declare function instanceOfUserTracksDownloadCountResponse(value: object): value is UserTracksDownloadCountResponse; export declare function UserTracksDownloadCountResponseFromJSON(json: any): UserTracksDownloadCountResponse; export declare function UserTracksDownloadCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserTracksDownloadCountResponse; export declare function UserTracksDownloadCountResponseToJSON(value?: UserTracksDownloadCountResponse | null): any;