@getopenpay/client
Version:
OpenPay API TypeScript SDK
27 lines (26 loc) • 1.09 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 BillingMeterEventStatus: {
readonly Active: "active";
readonly Canceled: "canceled";
readonly Billed: "billed";
};
export type BillingMeterEventStatus = typeof BillingMeterEventStatus[keyof typeof BillingMeterEventStatus];
export declare function instanceOfBillingMeterEventStatus(value: any): boolean;
export declare function BillingMeterEventStatusFromJSON(json: any): BillingMeterEventStatus;
export declare function BillingMeterEventStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillingMeterEventStatus;
export declare function BillingMeterEventStatusToJSON(value?: BillingMeterEventStatus | null): any;
export declare function BillingMeterEventStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): BillingMeterEventStatus;