Selling Partner API SDK for JavaScript
    Preparing search index...

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

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

    Properties

    discountDueDays?: number

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

    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+)?$.

    netDueDays?: number

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

    The payment term type for the invoice.