@getopenpay/client
Version:
OpenPay API TypeScript SDK
28 lines (27 loc) • 988 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 PricingModel: {
readonly Standard: "standard";
readonly Package: "package";
readonly Graduated: "graduated";
readonly Volume: "volume";
};
export type PricingModel = typeof PricingModel[keyof typeof PricingModel];
export declare function instanceOfPricingModel(value: any): boolean;
export declare function PricingModelFromJSON(json: any): PricingModel;
export declare function PricingModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PricingModel;
export declare function PricingModelToJSON(value?: PricingModel | null): any;
export declare function PricingModelToJSONTyped(value: any, ignoreDiscriminator: boolean): PricingModel;