@getopenpay/client
Version:
OpenPay API TypeScript SDK
28 lines (27 loc) • 1.02 kB
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 CustomerStatus: {
readonly Active: "active";
readonly Inactive: "inactive";
readonly Trialing: "trialing";
readonly Cancelled: "cancelled";
};
export type CustomerStatus = typeof CustomerStatus[keyof typeof CustomerStatus];
export declare function instanceOfCustomerStatus(value: any): boolean;
export declare function CustomerStatusFromJSON(json: any): CustomerStatus;
export declare function CustomerStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerStatus;
export declare function CustomerStatusToJSON(value?: CustomerStatus | null): any;
export declare function CustomerStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): CustomerStatus;