/** * Kanga Exchange API * API documentation generated from Kanga Exchange source code. * * The version of the OpenAPI document: 1.0.0 * Contact: support@kanga.exchange * * 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 ApiV2KposRefillPostRequest */ export interface ApiV2KposRefillPostRequest { /** * Unique request identifier, e.g. a timestamp in milliseconds * @type {number} * @memberof ApiV2KposRefillPostRequest */ nonce: number; /** * Your public key * @type {string} * @memberof ApiV2KposRefillPostRequest */ appId: string; /** * KPOS ID * @type {string} * @memberof ApiV2KposRefillPostRequest */ kposId: string; /** * Refill amount * @type {string} * @memberof ApiV2KposRefillPostRequest */ prize: string; /** * Number of repetitions (optional) * @type {number} * @memberof ApiV2KposRefillPostRequest */ repeats?: number; } /** * Check if a given object implements the ApiV2KposRefillPostRequest interface. */ export declare function instanceOfApiV2KposRefillPostRequest(value: object): boolean; export declare function ApiV2KposRefillPostRequestFromJSON(json: any): ApiV2KposRefillPostRequest; export declare function ApiV2KposRefillPostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2KposRefillPostRequest; export declare function ApiV2KposRefillPostRequestToJSON(value?: ApiV2KposRefillPostRequest | null): any; //# sourceMappingURL=ApiV2KposRefillPostRequest.d.ts.map