/** * Hathora Cloud API * Welcome to the Hathora Cloud API documentation! Learn how to use the Hathora Cloud APIs to build and scale your game servers globally. * * The version of the OpenAPI document: 0.0.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 InvoiceStatus: { readonly Pending: "pending"; readonly Paid: "paid"; readonly Overdue: "overdue"; }; export type InvoiceStatus = typeof InvoiceStatus[keyof typeof InvoiceStatus]; export declare function InvoiceStatusFromJSON(json: any): InvoiceStatus; export declare function InvoiceStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceStatus; export declare function InvoiceStatusToJSON(value?: InvoiceStatus | null): any;