/** * 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 ApiV2AomUpdatePostRequest */ export interface ApiV2AomUpdatePostRequest { /** * Unique request identifier, e.g. a timestamp in milliseconds * @type {number} * @memberof ApiV2AomUpdatePostRequest */ nonce: number; /** * Your public key * @type {string} * @memberof ApiV2AomUpdatePostRequest */ appId: string; /** * Order maker ID. * @type {string} * @memberof ApiV2AomUpdatePostRequest */ aomId: string; /** * Minimum order amount, e.g. '12.1234'. Decimal precision depends on currency (up to 18 decimal places). * @type {string} * @memberof ApiV2AomUpdatePostRequest */ minAmount: string; /** * Maximum order amount. May be equal to or greater than minimum amount. * @type {string} * @memberof ApiV2AomUpdatePostRequest */ maxAmount: string; /** * Minimum delay between orders in seconds (integer). * @type {number} * @memberof ApiV2AomUpdatePostRequest */ minDelay: number; /** * Maximum delay between orders in seconds (integer). May be equal to or greater than the minimum delay. * @type {number} * @memberof ApiV2AomUpdatePostRequest */ maxDelay: number; } /** * Check if a given object implements the ApiV2AomUpdatePostRequest interface. */ export declare function instanceOfApiV2AomUpdatePostRequest(value: object): boolean; export declare function ApiV2AomUpdatePostRequestFromJSON(json: any): ApiV2AomUpdatePostRequest; export declare function ApiV2AomUpdatePostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2AomUpdatePostRequest; export declare function ApiV2AomUpdatePostRequestToJSON(value?: ApiV2AomUpdatePostRequest | null): any; //# sourceMappingURL=ApiV2AomUpdatePostRequest.d.ts.map