UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

27 lines (26 loc) 957 B
/** * 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 CheckoutMode: { readonly Payment: "payment"; readonly Setup: "setup"; readonly Subscription: "subscription"; }; export type CheckoutMode = typeof CheckoutMode[keyof typeof CheckoutMode]; export declare function instanceOfCheckoutMode(value: any): boolean; export declare function CheckoutModeFromJSON(json: any): CheckoutMode; export declare function CheckoutModeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckoutMode; export declare function CheckoutModeToJSON(value?: CheckoutMode | null): any; export declare function CheckoutModeToJSONTyped(value: any, ignoreDiscriminator: boolean): CheckoutMode;