/** * 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 AlbumsResponse */ export interface AlbumsResponse { /** * * @type {number} * @memberof AlbumsResponse */ latestChainBlock: number; /** * * @type {number} * @memberof AlbumsResponse */ latestIndexedBlock: number; /** * * @type {number} * @memberof AlbumsResponse */ latestChainSlotPlays: number; /** * * @type {number} * @memberof AlbumsResponse */ latestIndexedSlotPlays: number; /** * * @type {string} * @memberof AlbumsResponse */ signature: string; /** * * @type {string} * @memberof AlbumsResponse */ timestamp: string; /** * * @type {VersionMetadata} * @memberof AlbumsResponse */ version: VersionMetadata; /** * * @type {Array} * @memberof AlbumsResponse */ data?: Array; } /** * Check if a given object implements the AlbumsResponse interface. */ export declare function instanceOfAlbumsResponse(value: object): value is AlbumsResponse; export declare function AlbumsResponseFromJSON(json: any): AlbumsResponse; export declare function AlbumsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AlbumsResponse; export declare function AlbumsResponseToJSON(value?: AlbumsResponse | null): any;