Details of the item being invoiced.

Export

InvoiceItem

interface InvoiceItem {
    allowanceDetails?: AllowanceDetails[];
    amazonProductIdentifier?: string;
    chargeDetails?: ChargeDetails[];
    creditNoteDetails?: CreditNoteDetails;
    hsnCode?: string;
    invoicedQuantity: ItemQuantity;
    itemSequenceNumber: number;
    netCost: Money;
    purchaseOrderNumber?: string;
    taxDetails?: TaxDetails[];
    vendorProductIdentifier?: string;
}

Properties

allowanceDetails?: AllowanceDetails[]

Individual allowance details per line item.

Memberof

InvoiceItem

amazonProductIdentifier?: string

Amazon Standard Identification Number (ASIN) of an item.

Memberof

InvoiceItem

chargeDetails?: ChargeDetails[]

Individual charge details per line item.

Memberof

InvoiceItem

creditNoteDetails?: CreditNoteDetails

Memberof

InvoiceItem

hsnCode?: string

HSN Tax code. The HSN number cannot contain alphabets.

Memberof

InvoiceItem

invoicedQuantity: ItemQuantity

Memberof

InvoiceItem

itemSequenceNumber: number

Unique number related to this line item.

Memberof

InvoiceItem

netCost: Money

Memberof

InvoiceItem

purchaseOrderNumber?: string

The Amazon purchase order number for this invoiced line item. Formatting Notes: 8-character alpha-numeric code. This value is mandatory only when invoiceType is Invoice, and is not required when invoiceType is CreditNote.

Memberof

InvoiceItem

taxDetails?: TaxDetails[]

Individual tax details per line item.

Memberof

InvoiceItem

vendorProductIdentifier?: string

The vendor selected product identifier of the item. Should be the same as was provided in the purchase order.

Memberof

InvoiceItem