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