Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 1.11 KB

CustomerSummaryOrders.md

File metadata and controls

13 lines (10 loc) · 1.11 KB

# CustomerSummaryOrders

Properties

Name Type Description Notes
total_amount int The total amount spent by the customer. Value is multiplied by 100 to precisely represent 2 decimal places. For example `10000 cents` for `$100.00`.
total_count int Total number of orders made by the customer.
average_amount int Average amount spent on orders. `total_amount` ÷ `total_count`. Value is multiplied by 100 to precisely represent 2 decimal places. For example `10000 cents` for `$100.00`.
last_order_amount int Amount spent on last order. Value is multiplied by 100 to precisely represent 2 decimal places. For example `10000 cents` for `$100.00`.
last_order_date \DateTime Timestamp representing the date and time of the customer's last order in ISO 8601 format. [optional]

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