/** * 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 PrizePublic */ export interface PrizePublic { /** * The unique identifier of the prize * @type {string} * @memberof PrizePublic */ prizeId: string; /** * The name of the prize * @type {string} * @memberof PrizePublic */ name: string; /** * Description of the prize * @type {string} * @memberof PrizePublic */ description?: string; /** * Weight for random selection (higher = more likely) * @type {number} * @memberof PrizePublic */ weight: number; /** * Sanitized metadata (excludes sensitive URLs) * @type {{ [key: string]: any; }} * @memberof PrizePublic */ metadata?: { [key: string]: any; }; } /** * Check if a given object implements the PrizePublic interface. */ export declare function instanceOfPrizePublic(value: object): value is PrizePublic; export declare function PrizePublicFromJSON(json: any): PrizePublic; export declare function PrizePublicFromJSONTyped(json: any, ignoreDiscriminator: boolean): PrizePublic; export declare function PrizePublicToJSON(value?: PrizePublic | null): any;