/** * 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 { PrizePublic } from './PrizePublic'; /** * * @export * @interface PrizesResponse */ export interface PrizesResponse { /** * List of active prizes available for claiming * @type {Array} * @memberof PrizesResponse */ data: Array; } /** * Check if a given object implements the PrizesResponse interface. */ export declare function instanceOfPrizesResponse(value: object): value is PrizesResponse; export declare function PrizesResponseFromJSON(json: any): PrizesResponse; export declare function PrizesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PrizesResponse; export declare function PrizesResponseToJSON(value?: PrizesResponse | null): any;