| POST | /purchase/simulate/v2 | Simulate Order |
|---|
namespace Richemont.Booster2.PublicApi.Purchase.ServiceModel
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type Quantity() =
///<summary>
///Unit
///</summary>
[<ApiMember(Description="Unit", IsRequired=true)>]
member val unit:String = null with get,set
///<summary>
///Value
///</summary>
[<ApiMember(Description="Value", IsRequired=true)>]
member val value:Decimal = new Decimal() with get,set
[<AllowNullLiteral>]
type Amount() =
///<summary>
///Value
///</summary>
[<ApiMember(Description="Value", IsRequired=true)>]
member val value:Decimal = new Decimal() with get,set
///<summary>
///Currency
///</summary>
[<ApiMember(Description="Currency", IsRequired=true)>]
member val currency:String = null with get,set
[<AllowNullLiteral>]
type AmountAndQuantity() =
///<summary>
///Amount
///</summary>
[<ApiMember(Description="Amount", IsRequired=true)>]
member val amount:Amount = null with get,set
///<summary>
///Base Quantity
///</summary>
[<ApiMember(Description="Base Quantity", IsRequired=true)>]
member val baseQuantity:Quantity = null with get,set
[<AllowNullLiteral>]
type ItemTotalValues() =
///<summary>
///Requested Quantity
///</summary>
[<ApiMember(Description="Requested Quantity")>]
member val requestedQuantity:Quantity = null with get,set
///<summary>
///Confirmed Quantity
///</summary>
[<ApiMember(Description="Confirmed Quantity")>]
member val confirmedQuantity:Quantity = null with get,set
///<summary>
///Available Quantity
///</summary>
[<ApiMember(Description="Available Quantity")>]
member val availableQuantity:Quantity = null with get,set
///<summary>
///Gross Weight
///</summary>
[<ApiMember(Description="Gross Weight")>]
member val grossWeightMeasure:Quantity = null with get,set
///<summary>
///Net Weight
///</summary>
[<ApiMember(Description="Net Weight")>]
member val netWeightMeasure:Quantity = null with get,set
///<summary>
///Volume
///</summary>
[<ApiMember(Description="Volume")>]
member val volumeMeasure:Quantity = null with get,set
///<summary>
///Net Amount Line Total
///</summary>
[<ApiMember(Description="Net Amount Line Total")>]
member val netAmount:Amount = null with get,set
///<summary>
///Net Price Line Total
///</summary>
[<ApiMember(Description="Net Price Line Total")>]
member val netPrice:AmountAndQuantity = null with get,set
///<summary>
///Tax Amount Line Total
///</summary>
[<ApiMember(Description="Tax Amount Line Total")>]
member val taxAmount:Amount = null with get,set
///<summary>
///Retail Sales Price Line Total
///</summary>
[<ApiMember(Description="Retail Sales Price Line Total")>]
member val retailSalesPriceAmount:Amount = null with get,set
[<AllowNullLiteral>]
type Warning() =
///<summary>
///Id
///</summary>
[<ApiMember(Description="Id", IsRequired=true)>]
member val id:String = null with get,set
///<summary>
///Message
///</summary>
[<ApiMember(Description="Message", IsRequired=true)>]
member val message:String = null with get,set
///<summary>
///Severity code, possible values: 1, 2, 3, 4
///</summary>
[<ApiMember(Description="Severity code, possible values: 1, 2, 3, 4", IsRequired=true)>]
member val severityCode:Int32 = new Int32() with get,set
[<AllowNullLiteral>]
type SimulateOrderItemResponseV2() =
///<summary>
///Line Number, e.g 20, 40, 21, 41
///</summary>
[<ApiMember(Description="Line Number, e.g 20, 40, 21, 41", IsRequired=true)>]
member val lineNumber:Int32 = new Int32() with get,set
///<summary>
///Parent Line Number, e.g 20, 40
///</summary>
[<ApiMember(Description="Parent Line Number, e.g 20, 40", IsRequired=true)>]
member val parentLineNumber:Nullable<Int32> = new Nullable<Int32>() with get,set
///<summary>
///Original line number in the request. Line numbers are remapped after the split
///</summary>
[<ApiMember(Description="Original line number in the request. Line numbers are remapped after the split", IsRequired=true)>]
member val requestLineNumber:Int32 = new Int32() with get,set
///<summary>
///Reference No of item, e.g.: CRWB521234
///</summary>
[<ApiMember(Description="Reference No of item, e.g.: CRWB521234", IsRequired=true)>]
member val articleCode:String = null with get,set
///<summary>
///Substituted reference No of item, e.g.: CRWB520003
///</summary>
[<ApiMember(Description="Substituted reference No of item, e.g.: CRWB520003")>]
member val substitutedArticleCode:String = null with get,set
///<summary>
///DeliveryPlantId of item, e.g.: CHD6
///</summary>
[<ApiMember(Description="DeliveryPlantId of item, e.g.: CHD6", IsRequired=true)>]
member val deliveryPlantId:String = null with get,set
///<summary>
///Expected Delivery Date, e.g. '2020-12-30'
///</summary>
[<ApiMember(Description="Expected Delivery Date, e.g. '2020-12-30'")>]
member val expectedDeliveryDate:String = null with get,set
///<summary>
///Buckle Summary, need to be forwarded to order creation
///</summary>
[<ApiMember(Description="Buckle Summary, need to be forwarded to order creation")>]
member val buckleSummary:String = null with get,set
///<summary>
///Material Summary, need to be forwarded to order creation
///</summary>
[<ApiMember(Description="Material Summary, need to be forwarded to order creation")>]
member val materialSummary:String = null with get,set
///<summary>
///Content Summary, need to be forwarded to order creation
///</summary>
[<ApiMember(Description="Content Summary, need to be forwarded to order creation")>]
member val contentSummary:String = null with get,set
///<summary>
///Strap Summary, need to be forwarded to order creation
///</summary>
[<ApiMember(Description="Strap Summary, need to be forwarded to order creation")>]
member val strapSummary:String = null with get,set
///<summary>
///Item Total Values
///</summary>
[<ApiMember(Description="Item Total Values", IsRequired=true)>]
member val totalValues:ItemTotalValues = null with get,set
///<summary>
///Warning list
///</summary>
[<ApiMember(Description="Warning list", IsRequired=true)>]
member val warnings:ResizeArray<Warning> = new ResizeArray<Warning>() with get,set
[<AllowNullLiteral>]
type TotalValues() =
///<summary>
///Gross Weight
///</summary>
[<ApiMember(Description="Gross Weight", IsRequired=true)>]
member val grossWeightMeasure:Quantity = null with get,set
///<summary>
///Net Weight
///</summary>
[<ApiMember(Description="Net Weight", IsRequired=true)>]
member val netWeightMeasure:Quantity = null with get,set
///<summary>
///Gross Volume
///</summary>
[<ApiMember(Description="Gross Volume", IsRequired=true)>]
member val grossVolumeMeasure:Quantity = null with get,set
///<summary>
///Gross Amount
///</summary>
[<ApiMember(Description="Gross Amount", IsRequired=true)>]
member val grossAmount:Amount = null with get,set
///<summary>
///Net Amount
///</summary>
[<ApiMember(Description="Net Amount", IsRequired=true)>]
member val netAmount:Amount = null with get,set
///<summary>
///Tax Amount
///</summary>
[<ApiMember(Description="Tax Amount", IsRequired=true)>]
member val taxAmount:Amount = null with get,set
[<AllowNullLiteral>]
type Address() =
///<summary>
///Country ID
///</summary>
[<ApiMember(Description="Country ID")>]
member val countryId:String = null with get,set
///<summary>
///State ID
///</summary>
[<ApiMember(Description="State ID")>]
member val stateId:String = null with get,set
///<summary>
///City Name
///</summary>
[<ApiMember(Description="City Name")>]
member val city:String = null with get,set
///<summary>
///Street Name and Number
///</summary>
[<ApiMember(Description="Street Name and Number")>]
member val street:String = null with get,set
///<summary>
///Postal Code
///</summary>
[<ApiMember(Description="Postal Code")>]
member val zipCode:String = null with get,set
[<AllowNullLiteral>]
type Party() =
///<summary>
///Internal ID of the Element
///</summary>
[<ApiMember(Description="Internal ID of the Element", IsRequired=true)>]
member val id:String = null with get,set
///<summary>
///Formatted Name of the Element
///</summary>
[<ApiMember(Description="Formatted Name of the Element", IsRequired=true)>]
member val name:String = null with get,set
///<summary>
///Geographic Address of the Element
///</summary>
[<ApiMember(Description="Geographic Address of the Element")>]
member val address:Address = null with get,set
[<AllowNullLiteral>]
type SplittedSimulateOrderResponse() =
///<summary>
///Order Type
///</summary>
[<ApiMember(Description="Order Type", IsRequired=true)>]
member val orderType:String = null with get,set
///<summary>
///Product Type
///</summary>
[<ApiMember(Description="Product Type", IsRequired=true)>]
member val productType:String = null with get,set
///<summary>
///List of Articles simulated
///</summary>
[<ApiMember(Description="List of Articles simulated", IsRequired=true)>]
member val orderItems:ResizeArray<SimulateOrderItemResponseV2> = new ResizeArray<SimulateOrderItemResponseV2>() with get,set
///<summary>
///Total Values
///</summary>
[<ApiMember(Description="Total Values", IsRequired=true)>]
member val totalValues:TotalValues = null with get,set
///<summary>
///Addresses which order can be shipped to
///</summary>
[<ApiMember(Description="Addresses which order can be shipped to", IsRequired=true)>]
member val shipTo:ResizeArray<Party> = new ResizeArray<Party>() with get,set
///<summary>
///Addresses which order can be final shipped to
///</summary>
[<ApiMember(Description="Addresses which order can be final shipped to")>]
member val finalShipTo:ResizeArray<Party> = new ResizeArray<Party>() with get,set
///<summary>
///Addresses which order can be billed to
///</summary>
[<ApiMember(Description="Addresses which order can be billed to", IsRequired=true)>]
member val billTo:ResizeArray<Party> = new ResizeArray<Party>() with get,set
///<summary>
///Address which order is made to
///</summary>
[<ApiMember(Description="Address which order is made to", IsRequired=true)>]
member val soldTo:Party = null with get,set
///<summary>
///Sales Representative
///</summary>
[<ApiMember(Description="Sales Representative")>]
member val salesRepresentative:Party = null with get,set
///<summary>
///Warning list
///</summary>
[<ApiMember(Description="Warning list", IsRequired=true)>]
member val warnings:ResizeArray<Warning> = new ResizeArray<Warning>() with get,set
[<AllowNullLiteral>]
type SimulateOrderResponseV2() =
///<summary>
///List of splitted order simulation results
///</summary>
[<ApiMember(Description="List of splitted order simulation results", IsRequired=true)>]
member val results:Dictionary<String, SplittedSimulateOrderResponse> = new Dictionary<String, SplittedSimulateOrderResponse>() with get,set
///<summary>
///Addresses which order can be shipped to (common list for all splitted orders)
///</summary>
[<ApiMember(Description="Addresses which order can be shipped to (common list for all splitted orders)")>]
member val shipTo:ResizeArray<Party> = new ResizeArray<Party>() with get,set
///<summary>
///Addresses which order can be final shipped to (common list for all splitted orders)
///</summary>
[<ApiMember(Description="Addresses which order can be final shipped to (common list for all splitted orders)")>]
member val finalShipTo:ResizeArray<Party> = new ResizeArray<Party>() with get,set
///<summary>
///Addresses which order can be billed to (common list for all splitted orders)
///</summary>
[<ApiMember(Description="Addresses which order can be billed to (common list for all splitted orders)")>]
member val billTo:ResizeArray<Party> = new ResizeArray<Party>() with get,set
///<summary>
///Address which order is made to (common list for all splitted orders)
///</summary>
[<ApiMember(Description="Address which order is made to (common list for all splitted orders)")>]
member val soldTo:Party = null with get,set
///<summary>
///Sales representatives (common list for all splitted orders)
///</summary>
[<ApiMember(Description="Sales representatives (common list for all splitted orders)")>]
member val salesRepresentative:Party = null with get,set
[<AllowNullLiteral>]
type StrapItem() =
///<summary>
///Article reference
///</summary>
[<ApiMember(Description="Article reference")>]
member val speakingArticleCode:String = null with get,set
///<summary>
///Buckle type Description
///</summary>
[<ApiMember(Description="Buckle type Description")>]
member val buckleTypeDescription:String = null with get,set
///<summary>
///Buckle type
///</summary>
[<ApiMember(Description="Buckle type")>]
member val buckleTypeCode:String = null with get,set
///<summary>
///watch 6 Length
///</summary>
[<ApiMember(Description="watch 6 Length")>]
member val watch6Length:Nullable<Int32> = new Nullable<Int32>() with get,set
///<summary>
///watch 12 Length
///</summary>
[<ApiMember(Description="watch 12 Length")>]
member val watch12Length:Nullable<Int32> = new Nullable<Int32>() with get,set
///<summary>
///Article Material Code
///</summary>
[<ApiMember(Description="Article Material Code")>]
member val materialCode:String = null with get,set
///<summary>
///Article Material Description
///</summary>
[<ApiMember(Description="Article Material Description")>]
member val materialDescription:String = null with get,set
///<summary>
///Article Color Code
///</summary>
[<ApiMember(Description="Article Color Code")>]
member val colorCode:String = null with get,set
///<summary>
///Article Color Description
///</summary>
[<ApiMember(Description="Article Color Description")>]
member val colorDescription:String = null with get,set
///<summary>
///Buckle Witdh
///</summary>
[<ApiMember(Description="Buckle Witdh")>]
member val buckleWidth:String = null with get,set
///<summary>
///Article Lining Code
///</summary>
[<ApiMember(Description="Article Lining Code")>]
member val liningCode:String = null with get,set
///<summary>
///Article Lining Description
///</summary>
[<ApiMember(Description="Article Lining Description")>]
member val liningDescription:String = null with get,set
///<summary>
///Article Stitching Code
///</summary>
[<ApiMember(Description="Article Stitching Code")>]
member val stitchingCode:String = null with get,set
///<summary>
///Article Stitching Description
///</summary>
[<ApiMember(Description="Article Stitching Description")>]
member val stitchingDescription:String = null with get,set
///<summary>
///Article Edge Code
///</summary>
[<ApiMember(Description="Article Edge Code")>]
member val edgeCode:String = null with get,set
///<summary>
///Article Edge Description
///</summary>
[<ApiMember(Description="Article Edge Description")>]
member val edgeDescription:String = null with get,set
///<summary>
///Article Padding Code
///</summary>
[<ApiMember(Description="Article Padding Code")>]
member val paddingCode:String = null with get,set
///<summary>
///Article Padding Description
///</summary>
[<ApiMember(Description="Article Padding Description")>]
member val paddingDescription:String = null with get,set
///<summary>
///Article Speciality Code
///</summary>
[<ApiMember(Description="Article Speciality Code")>]
member val specialtyCode:String = null with get,set
///<summary>
///Article Speciality Description
///</summary>
[<ApiMember(Description="Article Speciality Description")>]
member val specialtyDescription:String = null with get,set
///<summary>
///Nuancier Code
///</summary>
[<ApiMember(Description="Nuancier Code")>]
member val nuancierCode:String = null with get,set
///<summary>
///Strap Vip Order
///</summary>
[<ApiMember(Description="Strap Vip Order")>]
member val isStrapVipOrder:Nullable<Boolean> = new Nullable<Boolean>() with get,set
[<AllowNullLiteral>]
type SimulateOrderItemRequestV2() =
///<summary>
///Line Number
///</summary>
[<ApiMember(Description="Line Number", IsRequired=true)>]
member val lineNumber:Int32 = new Int32() with get,set
///<summary>
///Reference ID of the article/product, e.g. 'CRWB520003'
///</summary>
[<ApiMember(Description="Reference ID of the article/product, e.g. 'CRWB520003'", IsRequired=true)>]
member val articleCode:String = null with get,set
///<summary>
///Desired quantity of the article
///</summary>
[<ApiMember(Description="Desired quantity of the article", IsRequired=true)>]
member val quantity:Int32 = new Int32() with get,set
///<summary>
///Requested Delivery Date of the Item, e.g. '2020-12-30'
///</summary>
[<ApiMember(Description="Requested Delivery Date of the Item, e.g. '2020-12-30'")>]
member val requestedDeliveryDate:Nullable<DateTime> = new Nullable<DateTime>() with get,set
///<summary>
///Purchase order type, e.g. 'WCFS', null. Null for ordinary order
///</summary>
[<ApiMember(Description="Purchase order type, e.g. 'WCFS', null. Null for ordinary order")>]
member val orderType:String = null with get,set
///<summary>
///Final Ship To Pos Code
///</summary>
[<ApiMember(Description="Final Ship To Pos Code")>]
member val finalShipToId:String = null with get,set
///<summary>
///Strap definition
///</summary>
[<ApiMember(Description="Strap definition")>]
member val strap:StrapItem = null with get,set
[<AllowNullLiteral>]
type EndCustomerDetails() =
///<summary>
///Title of the end Customer, e.g. 'MR', 'MRS'.
///</summary>
[<ApiMember(Description="Title of the end Customer, e.g. 'MR', 'MRS'.")>]
member val title:String = null with get,set
///<summary>
///First Name of the end Customer
///</summary>
[<ApiMember(Description="First Name of the end Customer", IsRequired=true)>]
member val firstName:String = null with get,set
///<summary>
///Last Name of the end Customer
///</summary>
[<ApiMember(Description="Last Name of the end Customer", IsRequired=true)>]
member val lastName:String = null with get,set
///<summary>
///Email of the end Customer
///</summary>
[<ApiMember(Description="Email of the end Customer")>]
member val email:String = null with get,set
///<summary>
///Phone number of the end Customer, e.g. '0032477123456'.
///</summary>
[<ApiMember(Description="Phone number of the end Customer, e.g. '0032477123456'. ")>]
member val phone:String = null with get,set
///<summary>
///Countr code in the shipping address, e.g. 'BE' (ISO Code)
///</summary>
[<ApiMember(Description="Countr code in the shipping address, e.g. 'BE' (ISO Code)", IsRequired=true)>]
member val country:String = null with get,set
///<summary>
///City name in the shipping address
///</summary>
[<ApiMember(Description="City name in the shipping address", IsRequired=true)>]
member val city:String = null with get,set
///<summary>
///Street name in the shipping address
///</summary>
[<ApiMember(Description="Street name in the shipping address", IsRequired=true)>]
member val street:String = null with get,set
///<summary>
///House number in the shipping address
///</summary>
[<ApiMember(Description="House number in the shipping address")>]
member val houseNumber:String = null with get,set
///<summary>
///Building number in the shipping address
///</summary>
[<ApiMember(Description="Building number in the shipping address")>]
member val building:String = null with get,set
///<summary>
///Postal code in the shipping address
///</summary>
[<ApiMember(Description="Postal code in the shipping address")>]
member val postalCode:String = null with get,set
///<summary>
///Region code in the shipping address, e.g. 'VL' (ISO Code)
///</summary>
[<ApiMember(Description="Region code in the shipping address, e.g. 'VL' (ISO Code)")>]
member val region:String = null with get,set
///<summary>
///District name in the shipping address
///</summary>
[<ApiMember(Description="District name in the shipping address")>]
member val district:String = null with get,set
///<summary>
///Additional Info number to the shipping address
///</summary>
[<ApiMember(Description="Additional Info number to the shipping address")>]
member val additionalInfo:String = null with get,set
[<AllowNullLiteral>]
type SimulateOrderV2() =
///<summary>
///Brand Trigram of the intended Order, e.g. 'IWC', 'CAR', etc.
///</summary>
[<ApiMember(Description="Brand Trigram of the intended Order, e.g. 'IWC', 'CAR', etc.", IsRequired=true)>]
member val brand:String = null with get,set
///<summary>
///Global Pos Code for the intended Order e.g. ES100:102048
///</summary>
[<ApiMember(Description="Global Pos Code for the intended Order e.g. ES100:102048", IsRequired=true)>]
member val posCode:String = null with get,set
///<summary>
///Customer Reference
///</summary>
[<ApiMember(Description="Customer Reference")>]
member val customerReference:String = null with get,set
///<summary>
///Additional Notes regarding the Order
///</summary>
[<ApiMember(Description="Additional Notes regarding the Order")>]
member val notes:String = null with get,set
///<summary>
///Purchase order date, e.g. '2020-12-31'
///</summary>
[<ApiMember(Description="Purchase order date, e.g. '2020-12-31'")>]
member val orderDate:Nullable<DateTime> = new Nullable<DateTime>() with get,set
///<summary>
///List of Articles to be simulated
///</summary>
[<ApiMember(Description="List of Articles to be simulated", IsRequired=true)>]
member val orderItems:ResizeArray<SimulateOrderItemRequestV2> = new ResizeArray<SimulateOrderItemRequestV2>() with get,set
///<summary>
///Booster1 ID of the end Customer
///</summary>
[<ApiMember(Description="Booster1 ID of the end Customer")>]
member val endCustomerBooster1Id:String = null with get,set
///<summary>
///Details of the end Customer
///</summary>
[<ApiMember(Description="Details of the end Customer")>]
member val endCustomerDetails:EndCustomerDetails = null with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /purchase/simulate/v2 HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<SimulateOrderV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Purchase.ServiceModel">
<brand>String</brand>
<customerReference>String</customerReference>
<endCustomerBooster1Id>String</endCustomerBooster1Id>
<endCustomerDetails xmlns:d2p1="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Purchase.ServiceModel.SharedModels">
<d2p1:additionalInfo>String</d2p1:additionalInfo>
<d2p1:building>String</d2p1:building>
<d2p1:city>String</d2p1:city>
<d2p1:country>String</d2p1:country>
<d2p1:district>String</d2p1:district>
<d2p1:email>String</d2p1:email>
<d2p1:firstName>String</d2p1:firstName>
<d2p1:houseNumber>String</d2p1:houseNumber>
<d2p1:lastName>String</d2p1:lastName>
<d2p1:phone>String</d2p1:phone>
<d2p1:postalCode>String</d2p1:postalCode>
<d2p1:region>String</d2p1:region>
<d2p1:street>String</d2p1:street>
<d2p1:title>String</d2p1:title>
</endCustomerDetails>
<notes>String</notes>
<orderDate>0001-01-01T00:00:00</orderDate>
<orderItems>
<SimulateOrderItemRequestV2>
<articleCode>String</articleCode>
<finalShipToId>String</finalShipToId>
<lineNumber>0</lineNumber>
<orderType>String</orderType>
<quantity>0</quantity>
<requestedDeliveryDate>0001-01-01T00:00:00</requestedDeliveryDate>
<strap xmlns:d4p1="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Purchase.ServiceModel.SharedModels">
<d4p1:buckleTypeCode>String</d4p1:buckleTypeCode>
<d4p1:buckleTypeDescription>String</d4p1:buckleTypeDescription>
<d4p1:buckleWidth>String</d4p1:buckleWidth>
<d4p1:colorCode>String</d4p1:colorCode>
<d4p1:colorDescription>String</d4p1:colorDescription>
<d4p1:edgeCode>String</d4p1:edgeCode>
<d4p1:edgeDescription>String</d4p1:edgeDescription>
<d4p1:isStrapVipOrder>false</d4p1:isStrapVipOrder>
<d4p1:liningCode>String</d4p1:liningCode>
<d4p1:liningDescription>String</d4p1:liningDescription>
<d4p1:materialCode>String</d4p1:materialCode>
<d4p1:materialDescription>String</d4p1:materialDescription>
<d4p1:nuancierCode>String</d4p1:nuancierCode>
<d4p1:paddingCode>String</d4p1:paddingCode>
<d4p1:paddingDescription>String</d4p1:paddingDescription>
<d4p1:speakingArticleCode>String</d4p1:speakingArticleCode>
<d4p1:specialtyCode>String</d4p1:specialtyCode>
<d4p1:specialtyDescription>String</d4p1:specialtyDescription>
<d4p1:stitchingCode>String</d4p1:stitchingCode>
<d4p1:stitchingDescription>String</d4p1:stitchingDescription>
<d4p1:watch12Length>0</d4p1:watch12Length>
<d4p1:watch6Length>0</d4p1:watch6Length>
</strap>
</SimulateOrderItemRequestV2>
</orderItems>
<posCode>String</posCode>
</SimulateOrderV2>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<SimulateOrderResponseV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Purchase.ServiceModel">
<billTo>
<Party>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</Party>
</billTo>
<finalShipTo>
<Party>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</Party>
</finalShipTo>
<results xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringSplittedSimulateOrderResponsewCvGvoJB>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>
<billTo>
<Party>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</Party>
</billTo>
<finalShipTo>
<Party>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</Party>
</finalShipTo>
<orderItems>
<SimulateOrderItemResponseV2>
<articleCode>String</articleCode>
<buckleSummary>String</buckleSummary>
<contentSummary>String</contentSummary>
<deliveryPlantId>String</deliveryPlantId>
<expectedDeliveryDate>String</expectedDeliveryDate>
<lineNumber>0</lineNumber>
<materialSummary>String</materialSummary>
<parentLineNumber>0</parentLineNumber>
<requestLineNumber>0</requestLineNumber>
<strapSummary>String</strapSummary>
<substitutedArticleCode>String</substitutedArticleCode>
<totalValues>
<availableQuantity>
<unit>String</unit>
<value>0</value>
</availableQuantity>
<confirmedQuantity>
<unit>String</unit>
<value>0</value>
</confirmedQuantity>
<grossWeightMeasure>
<unit>String</unit>
<value>0</value>
</grossWeightMeasure>
<netAmount>
<currency>String</currency>
<value>0</value>
</netAmount>
<netPrice>
<amount>
<currency>String</currency>
<value>0</value>
</amount>
<baseQuantity>
<unit>String</unit>
<value>0</value>
</baseQuantity>
</netPrice>
<netWeightMeasure>
<unit>String</unit>
<value>0</value>
</netWeightMeasure>
<requestedQuantity>
<unit>String</unit>
<value>0</value>
</requestedQuantity>
<retailSalesPriceAmount>
<currency>String</currency>
<value>0</value>
</retailSalesPriceAmount>
<taxAmount>
<currency>String</currency>
<value>0</value>
</taxAmount>
<volumeMeasure>
<unit>String</unit>
<value>0</value>
</volumeMeasure>
</totalValues>
<warnings>
<Warning>
<id>String</id>
<message>String</message>
<severityCode>0</severityCode>
</Warning>
</warnings>
</SimulateOrderItemResponseV2>
</orderItems>
<orderType>String</orderType>
<productType>String</productType>
<salesRepresentative>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</salesRepresentative>
<shipTo>
<Party>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</Party>
</shipTo>
<soldTo>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</soldTo>
<totalValues>
<grossAmount>
<currency>String</currency>
<value>0</value>
</grossAmount>
<grossVolumeMeasure>
<unit>String</unit>
<value>0</value>
</grossVolumeMeasure>
<grossWeightMeasure>
<unit>String</unit>
<value>0</value>
</grossWeightMeasure>
<netAmount>
<currency>String</currency>
<value>0</value>
</netAmount>
<netWeightMeasure>
<unit>String</unit>
<value>0</value>
</netWeightMeasure>
<taxAmount>
<currency>String</currency>
<value>0</value>
</taxAmount>
</totalValues>
<warnings>
<Warning>
<id>String</id>
<message>String</message>
<severityCode>0</severityCode>
</Warning>
</warnings>
</d2p1:Value>
</d2p1:KeyValueOfstringSplittedSimulateOrderResponsewCvGvoJB>
</results>
<salesRepresentative>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</salesRepresentative>
<shipTo>
<Party>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</Party>
</shipTo>
<soldTo>
<address>
<city>String</city>
<countryId>String</countryId>
<stateId>String</stateId>
<street>String</street>
<zipCode>String</zipCode>
</address>
<id>String</id>
<name>String</name>
</soldTo>
</SimulateOrderResponseV2>