Skip to content
This repository was archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 1.74 KB

File metadata and controls

22 lines (16 loc) · 1.74 KB

OrderReturn

squareconnect.models.order_return

Description

The set of line items, service charges, taxes, discounts, tips, etc. being returned in an Order.

Properties

Name Type Description Notes
uid str Unique ID that identifies the return only within this order. This field is read-only. [optional]
source_order_id str Order which contains the original sale of these returned line items. This will be unset for unlinked returns. [optional]
return_line_items list[OrderReturnLineItem] Collection of line items which are being returned. [optional]
return_service_charges list[OrderReturnServiceCharge] Collection of service charges which are being returned. This field is read-only. [optional]
return_taxes list[OrderReturnTax] Collection of taxes which are being returned. [optional]
return_discounts list[OrderReturnDiscount] Collection of discounts which are being returned. [optional]
rounding_adjustment OrderRoundingAdjustment A positive or negative rounding adjustment to the total value being returned. Commonly used to apply Cash Rounding when the minimum unit of account is smaller than the lowest physical denomination of currency. [optional]
return_amounts OrderMoneyAmounts Aggregate monetary value being returned by this Return entry. [optional]

[Back to Model list] [Back to API list] [Back to README]