UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

34 lines (33 loc) 1.37 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. */ /** * PaymentProcessors are api's that we support and can charge. * @export */ export declare const PaymentProcessorName: { readonly Adyen: "adyen"; readonly Airwallex: "airwallex"; readonly AuthorizeNet: "authorize_net"; readonly CheckoutCom: "checkout_com"; readonly Braintree: "braintree"; readonly Stripe: "stripe"; readonly Foobar: "foobar"; readonly Pockyt: "pockyt"; readonly Cybersource: "cybersource"; readonly Loop: "loop"; }; export type PaymentProcessorName = typeof PaymentProcessorName[keyof typeof PaymentProcessorName]; export declare function instanceOfPaymentProcessorName(value: any): boolean; export declare function PaymentProcessorNameFromJSON(json: any): PaymentProcessorName; export declare function PaymentProcessorNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentProcessorName; export declare function PaymentProcessorNameToJSON(value?: PaymentProcessorName | null): any; export declare function PaymentProcessorNameToJSONTyped(value: any, ignoreDiscriminator: boolean): PaymentProcessorName;