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