/** * 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 ApiV2AomGetPost200ResponseOneOf */ export interface ApiV2AomGetPost200ResponseOneOf { /** * * @type {string} * @memberof ApiV2AomGetPost200ResponseOneOf */ result: ApiV2AomGetPost200ResponseOneOfResultEnum; /** * * @type {string} * @memberof ApiV2AomGetPost200ResponseOneOf */ marketId: string; /** * * @type {string} * @memberof ApiV2AomGetPost200ResponseOneOf */ currency: string; /** * * @type {string} * @memberof ApiV2AomGetPost200ResponseOneOf */ minAmount: string; /** * * @type {string} * @memberof ApiV2AomGetPost200ResponseOneOf */ maxAmount: string; /** * * @type {number} * @memberof ApiV2AomGetPost200ResponseOneOf */ minDelay: number; /** * * @type {number} * @memberof ApiV2AomGetPost200ResponseOneOf */ maxDelay: number; /** * * @type {string} * @memberof ApiV2AomGetPost200ResponseOneOf */ state: string; /** * * @type {string} * @memberof ApiV2AomGetPost200ResponseOneOf */ created: string; /** * * @type {object} * @memberof ApiV2AomGetPost200ResponseOneOf */ balances: object; } /** * @export */ export declare const ApiV2AomGetPost200ResponseOneOfResultEnum: { readonly Ok: "ok"; }; export type ApiV2AomGetPost200ResponseOneOfResultEnum = typeof ApiV2AomGetPost200ResponseOneOfResultEnum[keyof typeof ApiV2AomGetPost200ResponseOneOfResultEnum]; /** * Check if a given object implements the ApiV2AomGetPost200ResponseOneOf interface. */ export declare function instanceOfApiV2AomGetPost200ResponseOneOf(value: object): boolean; export declare function ApiV2AomGetPost200ResponseOneOfFromJSON(json: any): ApiV2AomGetPost200ResponseOneOf; export declare function ApiV2AomGetPost200ResponseOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2AomGetPost200ResponseOneOf; export declare function ApiV2AomGetPost200ResponseOneOfToJSON(value?: ApiV2AomGetPost200ResponseOneOf | null): any; //# sourceMappingURL=ApiV2AomGetPost200ResponseOneOf.d.ts.map