@getopenpay/client
Version:
OpenPay API TypeScript SDK
31 lines (30 loc) • 1.42 kB
TypeScript
/**
* 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 PaymentInitiator: {
readonly RetryPayingPastDueInvoicesJob: "retry_paying_past_due_invoices_job";
readonly ProcessOpenButPastNetDInvoicesJob: "process_open_but_past_net_d_invoices_job";
readonly PayOpenInvoiceJob: "pay_open_invoice_job";
readonly Manual: "manual";
readonly PayPastDueAssociatedWithPm: "pay_past_due_associated_with_pm";
readonly ProcessUncollectibleInvoices: "process_uncollectible_invoices";
readonly CreditCardAuthorizationFromController: "credit_card_authorization_from_controller";
};
export type PaymentInitiator = typeof PaymentInitiator[keyof typeof PaymentInitiator];
export declare function instanceOfPaymentInitiator(value: any): boolean;
export declare function PaymentInitiatorFromJSON(json: any): PaymentInitiator;
export declare function PaymentInitiatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentInitiator;
export declare function PaymentInitiatorToJSON(value?: PaymentInitiator | null): any;
export declare function PaymentInitiatorToJSONTyped(value: any, ignoreDiscriminator: boolean): PaymentInitiator;