UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

40 lines (39 loc) 1.4 kB
/** * 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 CardSubType: { readonly Classic: "classic"; readonly Business: "business"; readonly Standard: "standard"; readonly Personal: "personal"; readonly Prepaid: "prepaid"; readonly Platinum: "platinum"; readonly Gold: "gold"; readonly Uatp: "uatp"; readonly Proprietary: "proprietary"; readonly Enhanced: "enhanced"; readonly World: "world"; readonly Electron: "electron"; readonly PersonalCore: "personal_core"; readonly Traditional: "traditional"; readonly Corporate: "corporate"; readonly Signature: "signature"; }; export type CardSubType = typeof CardSubType[keyof typeof CardSubType]; export declare function instanceOfCardSubType(value: any): boolean; export declare function CardSubTypeFromJSON(json: any): CardSubType; export declare function CardSubTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CardSubType; export declare function CardSubTypeToJSON(value?: CardSubType | null): any; export declare function CardSubTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CardSubType;