/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CompanyInvoiceDto */ export interface CompanyInvoiceDto { /** * * @type {string} * @memberof CompanyInvoiceDto */ id: string; /** * * @type {Array} * @memberof CompanyInvoiceDto */ contents?: Array; /** * * @type {string} * @memberof CompanyInvoiceDto */ projectId: string; /** * * @type {number} * @memberof CompanyInvoiceDto */ createdAt: number; /** * * @type {number} * @memberof CompanyInvoiceDto */ dueDate?: number; /** * * @type {string} * @memberof CompanyInvoiceDto */ invoiceNumber: string; /** * * @type {string} * @memberof CompanyInvoiceDto */ invoiceLink: string; /** * * @type {string} * @memberof CompanyInvoiceDto */ paymentLink?: string; /** * * @type {string} * @memberof CompanyInvoiceDto */ status: CompanyInvoiceDtoStatusEnum; /** * * @type {number} * @memberof CompanyInvoiceDto */ total: number; } /** * @export * @enum {string} */ export declare enum CompanyInvoiceDtoStatusEnum { Draft = "draft", Open = "open", Paid = "paid", Cancelled = "cancelled", Unknown = "unknown" }