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