/** * 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 { TrackActivity } from './TrackActivity'; import type { VersionMetadata } from './VersionMetadata'; /** * * @export * @interface TrackLibraryResponse */ export interface TrackLibraryResponse { /** * * @type {number} * @memberof TrackLibraryResponse */ latestChainBlock: number; /** * * @type {number} * @memberof TrackLibraryResponse */ latestIndexedBlock: number; /** * * @type {number} * @memberof TrackLibraryResponse */ latestChainSlotPlays: number; /** * * @type {number} * @memberof TrackLibraryResponse */ latestIndexedSlotPlays: number; /** * * @type {string} * @memberof TrackLibraryResponse */ signature: string; /** * * @type {string} * @memberof TrackLibraryResponse */ timestamp: string; /** * * @type {VersionMetadata} * @memberof TrackLibraryResponse */ version: VersionMetadata; /** * * @type {Array} * @memberof TrackLibraryResponse */ data?: Array; } /** * Check if a given object implements the TrackLibraryResponse interface. */ export declare function instanceOfTrackLibraryResponse(value: object): value is TrackLibraryResponse; export declare function TrackLibraryResponseFromJSON(json: any): TrackLibraryResponse; export declare function TrackLibraryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackLibraryResponse; export declare function TrackLibraryResponseToJSON(value?: TrackLibraryResponse | null): any;