INPUT_OBJECT

culateOrderRequestInput

Body of request input for calculateOrder.

link GraphQL Schema definition

1input culateOrderRequestInput {
6
2# Gives predefined codes for calculation of discounts (-1), shipping (-2), sales
3# tax (-3), shipping tax (-4), coupons (-5), surcharge (-6) and shipping
4# adjustment (-7).
5calculationUsageId: String!
11
7# Specifies whether the command should perform the free gift handling logic. Set
8# to enable free gift handling, or not to handle free gifts when not required for
9# order recalculation (N). The default value is (Y).
10doFreeGift: String
15
12# Specifies whether the command should perform the price calculation subtasks. Set
13# to enable the price tasks (Y), or to disable price tasks (N).
14doPrice: String
18
16# Order identifier.
17orderId: String
24
19# Specifies the names of name-value pairs to pass to a JSP file. The value of each
20# added name-value pair is the reference number of the order to display. If the
21# name is not provided, the default name orderId is used. This
22# parameter can be repeated.
23outOrderName: String
28
25# Flag to indicate whether the price of order item is refreshed in this command.
26# if the flag is "1", price is updated. others will not.
27updatePrices: String
29}

link Required by