Enum defining types of data to load for an order.

Enumeration Members

All

Load all available data for the order. Binary: all bits set to 1 (~0 in binary)

BillingAddress

Load billing address data for the order. Binary: 00000100 (4 in decimal)

CheckoutAttributes

Load checkout attributes data for the order. Binary: 00001000 (8 in decimal)

Department

Load department data associated with the order. Binary: 00010000 (16 in decimal)

ExtraData

Load extra data associated with the order. Binary: 01000000 (64 in decimal)

None

Load no data for the order. Binary: 00000000 (0 in decimal)

OrderLineItems

Load order line items data for the order. Binary: 00100000 (32 in decimal)

ShippingAddress

Load shipping address data for the order. Binary: 00000010 (2 in decimal)