UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

32 lines (31 loc) 1.31 kB
/** * OpenPay API * super charge your subscription management. * * The version of the OpenAPI document: 1.2.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const PaymentIntentStatus: { readonly RequiresConfirmation: "requires_confirmation"; readonly RequiresCapture: "requires_capture"; readonly RequiresAction: "requires_action"; readonly RequiresPaymentMethod: "requires_payment_method"; readonly Processing: "processing"; readonly Canceled: "canceled"; readonly Succeeded: "succeeded"; readonly Exception: "exception"; }; export type PaymentIntentStatus = typeof PaymentIntentStatus[keyof typeof PaymentIntentStatus]; export declare function instanceOfPaymentIntentStatus(value: any): boolean; export declare function PaymentIntentStatusFromJSON(json: any): PaymentIntentStatus; export declare function PaymentIntentStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentIntentStatus; export declare function PaymentIntentStatusToJSON(value?: PaymentIntentStatus | null): any; export declare function PaymentIntentStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): PaymentIntentStatus;