@@ -53,7 +53,7 @@ public InboundShipmentResult CreateInboundShipment(string shipmentId, InboundShi
53
53
public InboundShipmentResult GetPreorderInfo ( string shipmentId )
54
54
{
55
55
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 ) ) ;
57
57
58
58
CreateAuthorizedRequest ( FulFillmentInboundApiUrls . GetPreorderInfo ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
59
59
@@ -65,7 +65,7 @@ public InboundShipmentResult GetPreorderInfo(string shipmentId)
65
65
public ConfirmPreorderResult ConfirmPreorder ( string shipmentId , DateTime NeedByDate )
66
66
{
67
67
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 ) ) ;
69
69
queryParameters . Add ( new KeyValuePair < string , string > ( "NeedByDate" , NeedByDate . ToString ( "YYYY-MM-DD" ) ) ) ;
70
70
71
71
CreateAuthorizedRequest ( FulFillmentInboundApiUrls . ConfirmPreorder ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
@@ -88,7 +88,7 @@ public GetPrepInstructionsResult GetPrepInstructions(ParameterGetPrepInstruction
88
88
public GetTransportDetailsResult GetTransportDetails ( string shipmentId )
89
89
{
90
90
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 ) ) ;
92
92
93
93
CreateAuthorizedRequest ( FulFillmentInboundApiUrls . GetTransportDetails ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
94
94
@@ -110,7 +110,7 @@ public CommonTransportResult PutTransportDetails(string shipmentId, PutTransport
110
110
public CommonTransportResult VoidTransport ( string shipmentId )
111
111
{
112
112
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 ) ) ;
114
114
115
115
CreateAuthorizedRequest ( FulFillmentInboundApiUrls . VoidTransport ( shipmentId ) , RestSharp . Method . POST , queryParameters ) ;
116
116
@@ -122,7 +122,7 @@ public CommonTransportResult VoidTransport(string shipmentId)
122
122
public CommonTransportResult EstimateTransport ( string shipmentId )
123
123
{
124
124
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 ) ) ;
126
126
127
127
CreateAuthorizedRequest ( FulFillmentInboundApiUrls . EstimateTransport ( shipmentId ) , RestSharp . Method . POST , queryParameters ) ;
128
128
@@ -134,7 +134,7 @@ public CommonTransportResult EstimateTransport(string shipmentId)
134
134
public CommonTransportResult ConfirmTransport ( string shipmentId )
135
135
{
136
136
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 ) ) ;
138
138
139
139
CreateAuthorizedRequest ( FulFillmentInboundApiUrls . ConfirmTransport ( shipmentId ) , RestSharp . Method . POST , queryParameters ) ;
140
140
@@ -156,7 +156,7 @@ public GetPrepInstructionsResult GetLabels(ParameterGetLabels parameterGetLabels
156
156
public BillOfLadingDownloadURL GetBillOfLading ( string shipmentId )
157
157
{
158
158
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 ) ) ;
160
160
161
161
CreateAuthorizedRequest ( FulFillmentInboundApiUrls . GetBillOfLading ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
162
162
@@ -188,7 +188,7 @@ public GetShipmentsResult GetShipmentItems(ParameterListReturnReasonCodes parame
188
188
public GetShipmentItemsResult GetShipmentItemsByShipmentId ( string shipmentId )
189
189
{
190
190
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 ) ) ;
192
192
193
193
CreateAuthorizedRequest ( FulFillmentInboundApiUrls . GetShipmentItemsByShipmentId ( shipmentId ) , RestSharp . Method . GET , queryParameters ) ;
194
194
0 commit comments