/** * 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 CreateRewardCodeRequest */ export interface CreateRewardCodeRequest { /** * Base64-encoded Solana Ed25519 signature of the string "code" * @type {string} * @memberof CreateRewardCodeRequest */ signature: string; /** * The coin mint address * @type {string} * @memberof CreateRewardCodeRequest */ mint: string; /** * The reward amount (must be greater than 0) * @type {number} * @memberof CreateRewardCodeRequest */ amount: number; } /** * Check if a given object implements the CreateRewardCodeRequest interface. */ export declare function instanceOfCreateRewardCodeRequest(value: object): value is CreateRewardCodeRequest; export declare function CreateRewardCodeRequestFromJSON(json: any): CreateRewardCodeRequest; export declare function CreateRewardCodeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRewardCodeRequest; export declare function CreateRewardCodeRequestToJSON(value?: CreateRewardCodeRequest | null): any;