@@ -53,7 +53,7 @@ public InboundShipmentResult CreateInboundShipment(string shipmentId, InboundShi
5353 public InboundShipmentResult GetPreorderInfo ( string shipmentId )
5454 {
5555 List < KeyValuePair < string , string > > queryParameters = new List < KeyValuePair < string , string > > ( ) ;
56- queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , MarketPlace . ID ) ) ;
56+ queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , AmazonCredential . MarketPlace . ID ) ) ;
5757
5858 CreateAuthorizedRequest ( FulFillmentInboundApiUrls . GetPreorderInfo ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
5959
@@ -65,7 +65,7 @@ public InboundShipmentResult GetPreorderInfo(string shipmentId)
6565 public ConfirmPreorderResult ConfirmPreorder ( string shipmentId , DateTime NeedByDate )
6666 {
6767 List < KeyValuePair < string , string > > queryParameters = new List < KeyValuePair < string , string > > ( ) ;
68- queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , MarketPlace . ID ) ) ;
68+ queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , AmazonCredential . MarketPlace . ID ) ) ;
6969 queryParameters . Add ( new KeyValuePair < string , string > ( "NeedByDate" , NeedByDate . ToString ( "YYYY-MM-DD" ) ) ) ;
7070
7171 CreateAuthorizedRequest ( FulFillmentInboundApiUrls . ConfirmPreorder ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
@@ -88,7 +88,7 @@ public GetPrepInstructionsResult GetPrepInstructions(ParameterGetPrepInstruction
8888 public GetTransportDetailsResult GetTransportDetails ( string shipmentId )
8989 {
9090 List < KeyValuePair < string , string > > queryParameters = new List < KeyValuePair < string , string > > ( ) ;
91- queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , MarketPlace . ID ) ) ;
91+ queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , AmazonCredential . MarketPlace . ID ) ) ;
9292
9393 CreateAuthorizedRequest ( FulFillmentInboundApiUrls . GetTransportDetails ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
9494
@@ -110,7 +110,7 @@ public CommonTransportResult PutTransportDetails(string shipmentId, PutTransport
110110 public CommonTransportResult VoidTransport ( string shipmentId )
111111 {
112112 List < KeyValuePair < string , string > > queryParameters = new List < KeyValuePair < string , string > > ( ) ;
113- queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , MarketPlace . ID ) ) ;
113+ queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , AmazonCredential . MarketPlace . ID ) ) ;
114114
115115 CreateAuthorizedRequest ( FulFillmentInboundApiUrls . VoidTransport ( shipmentId ) , RestSharp . Method . POST , queryParameters ) ;
116116
@@ -122,7 +122,7 @@ public CommonTransportResult VoidTransport(string shipmentId)
122122 public CommonTransportResult EstimateTransport ( string shipmentId )
123123 {
124124 List < KeyValuePair < string , string > > queryParameters = new List < KeyValuePair < string , string > > ( ) ;
125- queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , MarketPlace . ID ) ) ;
125+ queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , AmazonCredential . MarketPlace . ID ) ) ;
126126
127127 CreateAuthorizedRequest ( FulFillmentInboundApiUrls . EstimateTransport ( shipmentId ) , RestSharp . Method . POST , queryParameters ) ;
128128
@@ -134,7 +134,7 @@ public CommonTransportResult EstimateTransport(string shipmentId)
134134 public CommonTransportResult ConfirmTransport ( string shipmentId )
135135 {
136136 List < KeyValuePair < string , string > > queryParameters = new List < KeyValuePair < string , string > > ( ) ;
137- queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , MarketPlace . ID ) ) ;
137+ queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , AmazonCredential . MarketPlace . ID ) ) ;
138138
139139 CreateAuthorizedRequest ( FulFillmentInboundApiUrls . ConfirmTransport ( shipmentId ) , RestSharp . Method . POST , queryParameters ) ;
140140
@@ -156,7 +156,7 @@ public GetPrepInstructionsResult GetLabels(ParameterGetLabels parameterGetLabels
156156 public BillOfLadingDownloadURL GetBillOfLading ( string shipmentId )
157157 {
158158 List < KeyValuePair < string , string > > queryParameters = new List < KeyValuePair < string , string > > ( ) ;
159- queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , MarketPlace . ID ) ) ;
159+ queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , AmazonCredential . MarketPlace . ID ) ) ;
160160
161161 CreateAuthorizedRequest ( FulFillmentInboundApiUrls . GetBillOfLading ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
162162
@@ -188,7 +188,7 @@ public GetShipmentsResult GetShipmentItems(ParameterListReturnReasonCodes parame
188188 public GetShipmentItemsResult GetShipmentItemsByShipmentId ( string shipmentId )
189189 {
190190 List < KeyValuePair < string , string > > queryParameters = new List < KeyValuePair < string , string > > ( ) ;
191- queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , MarketPlace . ID ) ) ;
191+ queryParameters . Add ( new KeyValuePair < string , string > ( "MarketplaceId" , AmazonCredential . MarketPlace . ID ) ) ;
192192
193193 CreateAuthorizedRequest ( FulFillmentInboundApiUrls . GetShipmentItemsByShipmentId ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
194194
0 commit comments