/** * 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 TrackDownloadRequestBody */ export interface TrackDownloadRequestBody { /** * City where the download occurred * @type {string} * @memberof TrackDownloadRequestBody */ city?: string; /** * Region where the download occurred * @type {string} * @memberof TrackDownloadRequestBody */ region?: string; /** * Country where the download occurred * @type {string} * @memberof TrackDownloadRequestBody */ country?: string; } /** * Check if a given object implements the TrackDownloadRequestBody interface. */ export declare function instanceOfTrackDownloadRequestBody(value: object): value is TrackDownloadRequestBody; export declare function TrackDownloadRequestBodyFromJSON(json: any): TrackDownloadRequestBody; export declare function TrackDownloadRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackDownloadRequestBody; export declare function TrackDownloadRequestBodyToJSON(value?: TrackDownloadRequestBody | null): any;