OBJECT
orderWithOrderItemContainer
Structure containing an order ID and order item ID.
link GraphQL Schema definition
1 type orderWithOrderItemContainer { 2 3 # The `orderId` value returned in the response can be used as the `orderId` in 4 # requestbody of `PUT /store/{storeId}/cart/@self/precheckout`. 5 # 6 # 7 # Equivalent to PUT /store/{storeId}/cart/@self/precheckout 8 # 9 # Arguments 10 # responseFormat: The response format. Valid values are json and 11 # xml. If the request contains an input body, it must use the format specified in 12 # responseFormat. If the responseFormat is not specified, the accept HTTP header 13 # determines the format of the response. If the accept HTTP header is not 14 # specified then default response format is json. 15 # storeId: The store identifier. 16 ( 17 ResponseFormat, : 18 String! : 19 ): cartOrderIdContainer 55 20 # Order identifier. 21 String! : 55 22 # List of order items. 23 ComIbmCommerceRestOrderHandlerCartHandlerOrderWithOrderItemContainerOrderItemBodyDescription]! : [ 55 24 String : 55 25 # The `storeId` value returned in the response can be used as the `storeId` 26 # parameter in `PUT /store/{storeId}/cart/@self/precheckout`. 27 # 28 # 29 # Equivalent to PUT /store/{storeId}/cart/@self/precheckout 30 # 31 # Arguments 32 # responseFormat: The response format. Valid values are json and 33 # xml. If the request contains an input body, it must use the format specified in 34 # responseFormat. If the responseFormat is not specified, the accept HTTP header 35 # determines the format of the response. If the accept HTTP header is not 36 # specified then default response format is json. 37 ResponseFormat): cartOrderIdContainer ( : 55 38 # The `orderId` value returned in the response can be used as the `orderId` in 39 # requestBody of `PUT /store/{storeId}/cart/@self/update_order_item`. 40 # 41 # 42 # Equivalent to PUT /store/{storeId}/cart/@self/update_order_item 43 # 44 # Arguments 45 # responseFormat: The response format. Valid values are json and 46 # xml. If the request contains an input body, it must use the format specified in 47 # responseFormat. If the responseFormat is not specified, the accept HTTP header 48 # determines the format of the response. If the accept HTTP header is not 49 # specified then default response format is json. 50 # storeId: The store identifier. 51 ( 52 ResponseFormat, : 53 String! : 54 ): orderWithOrderItemContainer 56 57 }