UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

26 lines (25 loc) 936 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 PriceTypeEnum: { readonly OneTime: "one_time"; readonly Recurring: "recurring"; }; export type PriceTypeEnum = typeof PriceTypeEnum[keyof typeof PriceTypeEnum]; export declare function instanceOfPriceTypeEnum(value: any): boolean; export declare function PriceTypeEnumFromJSON(json: any): PriceTypeEnum; export declare function PriceTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): PriceTypeEnum; export declare function PriceTypeEnumToJSON(value?: PriceTypeEnum | null): any; export declare function PriceTypeEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): PriceTypeEnum;