interface Invoice {
    dueDate?: Date;
    id: string;
    invoiceType: Billing.v2alpha1.InvoiceType;
    issuedDate?: Date;
    number: number;
    startDate?: Date;
    totalTaxed?: Money;
    totalUntaxed?: Money;
}

Properties

dueDate?: Date

Payment time limit, set according to the Organization's payment conditions.

id: string

Invoice ID.

Type of invoice.

issuedDate?: Date

Date when the invoice was sent to the customer.

number: number

Invoice number.

startDate?: Date

Start date of the billing period.

totalTaxed?: Money

Total amount, taxed.

totalUntaxed?: Money

Total amount, untaxed.