/** * 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 TrackInspect */ export interface TrackInspect { /** * * @type {BlobInfo} * @memberof TrackInspect */ data?: BlobInfo; } /** * Check if a given object implements the TrackInspect interface. */ export declare function instanceOfTrackInspect(value: object): value is TrackInspect; export declare function TrackInspectFromJSON(json: any): TrackInspect; export declare function TrackInspectFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackInspect; export declare function TrackInspectToJSON(value?: TrackInspect | null): any;