UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

26 lines (25 loc) 982 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 BillingSchemeEnum: { readonly PerUnit: "per_unit"; readonly Tiered: "tiered"; }; export type BillingSchemeEnum = typeof BillingSchemeEnum[keyof typeof BillingSchemeEnum]; export declare function instanceOfBillingSchemeEnum(value: any): boolean; export declare function BillingSchemeEnumFromJSON(json: any): BillingSchemeEnum; export declare function BillingSchemeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillingSchemeEnum; export declare function BillingSchemeEnumToJSON(value?: BillingSchemeEnum | null): any; export declare function BillingSchemeEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): BillingSchemeEnum;