/** * Daytona Billing API * Daytona Billing API * * The version of the OpenAPI document: v0.0.0-dev * * * 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 { InvoiceErrorDetail } from './invoice-error-detail'; import type { InvoicePaymentStatus } from './invoice-payment-status'; import type { InvoiceStatus } from './invoice-status'; import type { InvoiceType } from './invoice-type'; export interface Invoice { 'currency'?: string; 'errorDetails'?: Array; 'fileUrl'?: string; 'id'?: string; 'issuingDate'?: string; 'number'?: string; 'paymentDueDate'?: string; 'paymentOverdue'?: boolean; 'paymentStatus'?: InvoicePaymentStatus; 'sequentialId'?: number; 'status'?: InvoiceStatus; 'totalAmountCents'?: number; 'totalDueAmountCents'?: number; 'type'?: InvoiceType; }