/** * 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. */ /** * Payment details * @export * @interface ApiV2PayPaymentGetPost200ResponseOneOf */ export interface ApiV2PayPaymentGetPost200ResponseOneOf { /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ result: ApiV2PayPaymentGetPost200ResponseOneOfResultEnum; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ id: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ created: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ itemPrice: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ itemCurrency: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ destinationPrice: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ destinationCurrency: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ feeRate: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ payCode: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ email: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ state: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ paymentId: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ paymentAmount?: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ paymentCurrency?: string; /** * * @type {string} * @memberof ApiV2PayPaymentGetPost200ResponseOneOf */ settlementDate?: string; } /** * @export */ export declare const ApiV2PayPaymentGetPost200ResponseOneOfResultEnum: { readonly Ok: "ok"; }; export type ApiV2PayPaymentGetPost200ResponseOneOfResultEnum = typeof ApiV2PayPaymentGetPost200ResponseOneOfResultEnum[keyof typeof ApiV2PayPaymentGetPost200ResponseOneOfResultEnum]; /** * Check if a given object implements the ApiV2PayPaymentGetPost200ResponseOneOf interface. */ export declare function instanceOfApiV2PayPaymentGetPost200ResponseOneOf(value: object): boolean; export declare function ApiV2PayPaymentGetPost200ResponseOneOfFromJSON(json: any): ApiV2PayPaymentGetPost200ResponseOneOf; export declare function ApiV2PayPaymentGetPost200ResponseOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2PayPaymentGetPost200ResponseOneOf; export declare function ApiV2PayPaymentGetPost200ResponseOneOfToJSON(value?: ApiV2PayPaymentGetPost200ResponseOneOf | null): any; //# sourceMappingURL=ApiV2PayPaymentGetPost200ResponseOneOf.d.ts.map