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