Interface InvoiceDto

interface InvoiceDto {
    currency: string;
    customer: InvoiceCustomerDto;
    delivery?: InvoiceDeliveryDto;
    details?: InvoiceDetailsDto;
    language: string;
    paymentTerms?: InvoicePaymentTermsDto;
    rows: InvoiceRowDto[];
    sentMethod: InvoiceSentMethod;
    status: SendInvoiceStatus;
    vatType?: InvoiceRowVatType;
}

Properties

currency: string
language: string
paymentTerms?: InvoicePaymentTermsDto
sentMethod: InvoiceSentMethod