/** * 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 ClaimRewardsRequestBody */ export interface ClaimRewardsRequestBody { /** * The challenge ID to filter rewards (optional) * @type {string} * @memberof ClaimRewardsRequestBody */ challengeId?: string; /** * The specifier to filter rewards (optional) * @type {string} * @memberof ClaimRewardsRequestBody */ specifier?: string; /** * The user ID to claim rewards for * @type {string} * @memberof ClaimRewardsRequestBody */ userId: string; } /** * Check if a given object implements the ClaimRewardsRequestBody interface. */ export declare function instanceOfClaimRewardsRequestBody(value: object): value is ClaimRewardsRequestBody; export declare function ClaimRewardsRequestBodyFromJSON(json: any): ClaimRewardsRequestBody; export declare function ClaimRewardsRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClaimRewardsRequestBody; export declare function ClaimRewardsRequestBodyToJSON(value?: ClaimRewardsRequestBody | null): any;