Create data
| Name | Type | Description | Notes |
|---|---|---|---|
| orderTotal | Double | Ecommerce cart total | [optional] |
| orderId | String | Order ID is any non-empty unique string | |
| cartId | String | Cart ID that originated this order | [optional] |
| orderDate | OffsetDateTime | Date and hour of the order | [optional] |
| orderStatus | OrderStatusEnum | Status of the order | [optional] |
| contact | Contact1 | [optional] | |
| products | List<OrderProduct> | List of products | [optional] |
| Name | Value |
|---|---|
| CREATED | "created" |
| PENDING | "pending" |
| CANCELED | "canceled" |
| COMPLETED | "completed" |
| UNKNOWN | "unknown" |