UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

27 lines (26 loc) 990 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 ProrationEnum: { readonly CreateProrations: "create_prorations"; readonly None: "none"; readonly AlwaysInvoice: "always_invoice"; }; export type ProrationEnum = typeof ProrationEnum[keyof typeof ProrationEnum]; export declare function instanceOfProrationEnum(value: any): boolean; export declare function ProrationEnumFromJSON(json: any): ProrationEnum; export declare function ProrationEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProrationEnum; export declare function ProrationEnumToJSON(value?: ProrationEnum | null): any; export declare function ProrationEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): ProrationEnum;