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