Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 944 Bytes

File metadata and controls

32 lines (20 loc) · 944 Bytes

CreateOrder

Create data

Properties

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]

Enum: OrderStatusEnum

Name Value
CREATED "created"
PENDING "pending"
CANCELED "canceled"
COMPLETED "completed"
UNKNOWN "unknown"