/** * 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 { BlobInfo } from './BlobInfo'; /** * * @export * @interface TrackInspectList */ export interface TrackInspectList { /** * * @type {Array} * @memberof TrackInspectList */ data?: Array; } /** * Check if a given object implements the TrackInspectList interface. */ export declare function instanceOfTrackInspectList(value: object): value is TrackInspectList; export declare function TrackInspectListFromJSON(json: any): TrackInspectList; export declare function TrackInspectListFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackInspectList; export declare function TrackInspectListToJSON(value?: TrackInspectList | null): any;