/** * 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 TrackId */ export interface TrackId { /** * * @type {string} * @memberof TrackId */ id: string; } /** * Check if a given object implements the TrackId interface. */ export declare function instanceOfTrackId(value: object): value is TrackId; export declare function TrackIdFromJSON(json: any): TrackId; export declare function TrackIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackId; export declare function TrackIdToJSON(value?: TrackId | null): any;