/** * 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 ApiV2AomTopupPostRequest */ export interface ApiV2AomTopupPostRequest { /** * Unique request identifier, e.g. a timestamp in milliseconds * @type {number} * @memberof ApiV2AomTopupPostRequest */ nonce: number; /** * Your public key * @type {string} * @memberof ApiV2AomTopupPostRequest */ appId: string; /** * Order maker ID. * @type {string} * @memberof ApiV2AomTopupPostRequest */ aomId: string; /** * Top-up currency. * @type {string} * @memberof ApiV2AomTopupPostRequest */ currency: string; /** * Top-up amount. * @type {string} * @memberof ApiV2AomTopupPostRequest */ amount: string; } /** * Check if a given object implements the ApiV2AomTopupPostRequest interface. */ export declare function instanceOfApiV2AomTopupPostRequest(value: object): boolean; export declare function ApiV2AomTopupPostRequestFromJSON(json: any): ApiV2AomTopupPostRequest; export declare function ApiV2AomTopupPostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2AomTopupPostRequest; export declare function ApiV2AomTopupPostRequestToJSON(value?: ApiV2AomTopupPostRequest | null): any; //# sourceMappingURL=ApiV2AomTopupPostRequest.d.ts.map