PaymentItemsObject: {
    description?: string;
    name: string;
    total_amount: string;
    ucc: string;
    unit_measurement: string;
    unit_price: string;
    units_sold: string;
    upc: string;
}

Payment sale order items object.

Type declaration

  • Optional description?: string

    Item description

  • name: string

    Item name

  • total_amount: string

    The total amount of the item which should equal (((unit_price * units_sold) + taxes + fees) - discounts)

  • ucc: string

    Item Universal Commercial Code (UCC) value

  • unit_measurement: string

    Item unit of measurement

  • unit_price: string

    Item price per unit

  • units_sold: string

    Item units sold

  • upc: string

    Item Universal Product Code (UPC) value

Generated using TypeDoc