/** * 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. */ /** * * @export * @interface PrizeClaimResponse */ export interface PrizeClaimResponse { /** * The unique identifier of the prize won * @type {string} * @memberof PrizeClaimResponse */ prizeId: string; /** * The name of the prize won * @type {string} * @memberof PrizeClaimResponse */ prizeName: string; /** * The wallet address that claimed the prize * @type {string} * @memberof PrizeClaimResponse */ wallet: string; /** * The type of prize (e.g., "coin_airdrop", "download") * @type {string} * @memberof PrizeClaimResponse */ prizeType?: string; /** * Prize-specific action data (e.g., redeem code/URL for coin airdrops, download URL for downloads) * @type {{ [key: string]: any; }} * @memberof PrizeClaimResponse */ actionData?: { [key: string]: any; }; } /** * Check if a given object implements the PrizeClaimResponse interface. */ export declare function instanceOfPrizeClaimResponse(value: object): value is PrizeClaimResponse; export declare function PrizeClaimResponseFromJSON(json: any): PrizeClaimResponse; export declare function PrizeClaimResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PrizeClaimResponse; export declare function PrizeClaimResponseToJSON(value?: PrizeClaimResponse | null): any;