OrderItemStatus
Indicates the status of an OrderItem.
enum OrderItemStatus {
ASSIGNED
CANCELLED
FULFILLED
INITIAL
PARTIALLY_ASSIGNED
PARTIALLY_FULFILLED
}
Values
OrderItemStatus.ASSIGNED
OrderItemStatus.CANCELLED
Indicates that the OrderItem was assigned, but is no longer needed to be fulfilled.
OrderItemStatus.FULFILLED
Indicates that the OrderItem is fully fulfilled and is now complete.
OrderItemStatus.INITIAL
Indicates that the OrderItem is ready for processing, and data is complete.
OrderItemStatus.PARTIALLY_ASSIGNED
OrderItemStatus.PARTIALLY_FULFILLED
Indicates that the OrderItem is in the process of being fulfilled.
Member of
OrderItem
object