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