Terms of the payment for the invoice. The basis of the payment terms is the invoice date.

PaymentTerms

interface PaymentTerms {
    discountDueDays?: number;
    discountPercent?: string;
    netDueDays?: number;
    type?: PaymentTermsTypeEnum;
}

Properties

discountDueDays?: number

The number of calendar days from the Base date (Invoice date) until the discount is no longer valid.

PaymentTerms

discountPercent?: string

A decimal number with no loss of precision. Useful when precision loss is unacceptable, as with currencies. Follows RFC7159 for number representation.
Pattern : ^-?(0|([1-9]\\d*))(\\.\\d+)?([eE][+-]?\\d+)?$.

PaymentTerms

netDueDays?: number

The number of calendar days from the base date (invoice date) until the total amount on the invoice is due.

PaymentTerms

The payment term type for the invoice.

PaymentTerms