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