/** * 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 ApiV2PayPaymentCreatePost200ResponseOneOf */ export interface ApiV2PayPaymentCreatePost200ResponseOneOf { /** * * @type {string} * @memberof ApiV2PayPaymentCreatePost200ResponseOneOf */ result: ApiV2PayPaymentCreatePost200ResponseOneOfResultEnum; /** * * @type {string} * @memberof ApiV2PayPaymentCreatePost200ResponseOneOf */ id: string; /** * * @type {string} * @memberof ApiV2PayPaymentCreatePost200ResponseOneOf */ state: string; /** * * @type {string} * @memberof ApiV2PayPaymentCreatePost200ResponseOneOf */ created: string; /** * * @type {string} * @memberof ApiV2PayPaymentCreatePost200ResponseOneOf */ expires: string; } /** * @export */ export declare const ApiV2PayPaymentCreatePost200ResponseOneOfResultEnum: { readonly Ok: "ok"; }; export type ApiV2PayPaymentCreatePost200ResponseOneOfResultEnum = typeof ApiV2PayPaymentCreatePost200ResponseOneOfResultEnum[keyof typeof ApiV2PayPaymentCreatePost200ResponseOneOfResultEnum]; /** * Check if a given object implements the ApiV2PayPaymentCreatePost200ResponseOneOf interface. */ export declare function instanceOfApiV2PayPaymentCreatePost200ResponseOneOf(value: object): boolean; export declare function ApiV2PayPaymentCreatePost200ResponseOneOfFromJSON(json: any): ApiV2PayPaymentCreatePost200ResponseOneOf; export declare function ApiV2PayPaymentCreatePost200ResponseOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2PayPaymentCreatePost200ResponseOneOf; export declare function ApiV2PayPaymentCreatePost200ResponseOneOfToJSON(value?: ApiV2PayPaymentCreatePost200ResponseOneOf | null): any; //# sourceMappingURL=ApiV2PayPaymentCreatePost200ResponseOneOf.d.ts.map