Lists details about orders related to the customer. Lists only data for orders with the PAID or FULFILLED status. Data from orders with a CREATED or CANCELED status are not included. The data is updated also when an order changes status.
| Name | Type | Description | Notes |
|---|---|---|---|
| total_amount | int | The total amount spent by the customer. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. | [optional] |
| total_count | int | Total number of orders made by the customer. | [optional] |
| average_amount | int | Average amount spent on orders. `total_amount` ÷ `total_count`. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. | [optional] |
| last_order_amount | int | Amount spent on last order. The value is multiplied by 100 to represent 2 decimal places. For example `10000 cents` for `$100.00`. | [optional] |
| last_order_date | datetime | Timestamp representing the date and time of the customer's last order in ISO 8601 format. | [optional] |