Flag Enum to specify options when submitting an order.
This Enumeration can be treated as a bit field; that is, a set of flags.
If you would like to specify order options "IgnoreCapacity"(2) and "WaitForPayment"(4), use 6 (2+4)
If you would like to specify order options "IgnoreCapacity"(2), "WaitForPayment"(4) and "UpdateAddress"(1), use 7 (2+4+1)
Possible enumeration values:
Name | Value | Description |
---|---|---|
None |
0 |
This flag has no effect on the add order process. |
UpdateAddress |
1 |
If specified, the address supplied with the order will be saved to the associated customer's profile. |
IgnoreCapacity |
2 |
Capacity restrictions will be ignored when adding the new order to the ATO system. |
WaitForPayment |
4 |
Wait for payments to be applied to the associated check before returning from add order process. This is not currently supported in ATO. |