@getopenpay/client
Version:
OpenPay API TypeScript SDK
26 lines (25 loc) • 906 B
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 InvoiceType: {
readonly Standard: "standard";
readonly OneOff: "one_off";
};
export type InvoiceType = typeof InvoiceType[keyof typeof InvoiceType];
export declare function instanceOfInvoiceType(value: any): boolean;
export declare function InvoiceTypeFromJSON(json: any): InvoiceType;
export declare function InvoiceTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceType;
export declare function InvoiceTypeToJSON(value?: InvoiceType | null): any;
export declare function InvoiceTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): InvoiceType;