File tree Expand file tree Collapse file tree 3 files changed +48
-0
lines changed
Expand file tree Collapse file tree 3 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ # %RAML 1.0 DataType
2+ (annotations.package) : responses
3+ type : ResponseMessage
4+ displayName : ShippingMethodSelected
5+ discriminatorValue : shipping_method_selected
6+ description : |
7+ Generated when the customer selects a Shipping Method that is different from the default option.
8+ properties :
9+ code :
10+ type : string
11+ description :
12+ severity :
13+ type : string
14+ description : \`info`
15+ message :
16+ type : string
17+ description : Shipping Method selected.
18+ correlationId :
19+ type : string
20+ description : Unique identifier of the event.
21+ payload :
22+ type : object
23+ description : Contains the `method` object with the `name` and `id` properties.
Original file line number Diff line number Diff line change 1+ # %RAML 1.0 DataType
2+ (annotations.package) : responses
3+ type : ResponseMessage
4+ displayName : ShippingMethodSelectionConfirmation
5+ discriminatorValue : shipping_method_selection_confirmation
6+ description : |
7+ Generated when the customer selects a Shipping Method and moves to the next step of the checkout process.
8+ properties :
9+ code :
10+ type : string
11+ description :
12+ severity :
13+ type : string
14+ description : \`info`
15+ message :
16+ type : string
17+ description : Shipping Method selection confirmed.
18+ correlationId :
19+ type : string
20+ description : Unique identifier of the event.
21+ payload :
22+ type : object
23+ description : Contains the `method` object with the `name` and `id` properties.
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ SetShippingAddressError: !include responses/SetShippingAddressError.raml
5252ShippingAddressMissingError : !include responses/ShippingAddressMissingError.raml
5353ShippingMethodDoesNotMatchCart : !include responses/ShippingMethodDoesNotMatchCart.raml
5454NoShippingMethods : !include responses/NoShippingMethods.raml
55+ ShippingMethodSelected : !include responses/ShippingMethodSelected.raml
56+ ShippingMethodSelectionConfirmation : !include responses/ShippingMethodSelectionConfirmation.raml
5557OrderCreated : !include responses/OrderCreated.raml
5658ProjectIsDeactivated : !include responses/ProjectIsDeactivated.raml
5759UnavailableLocale : !include responses/UnavailableLocale.raml
You can’t perform that action at this time.
0 commit comments