/** * 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. */ import type { InvoiceStatus } from './InvoiceStatus'; /** * * @export * @interface Invoice */ export interface Invoice { /** * * @type {InvoiceStatus} * @memberof Invoice */ status: InvoiceStatus; /** * * @type {number} * @memberof Invoice */ amountDue: number; /** * * @type {string} * @memberof Invoice */ pdfUrl: string; /** * * @type {Date} * @memberof Invoice */ dueDate: Date; /** * * @type {number} * @memberof Invoice */ year: number; /** * * @type {number} * @memberof Invoice */ month: number; /** * * @type {string} * @memberof Invoice */ id: string; } /** * Check if a given object implements the Invoice interface. */ export declare function instanceOfInvoice(value: object): boolean; export declare function InvoiceFromJSON(json: any): Invoice; export declare function InvoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Invoice; export declare function InvoiceToJSON(value?: Invoice | null): any;