File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Source/FikaAmazonAPI/Services Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,9 +120,9 @@ public async Task<bool> UpdateFulfillmentOrderAsync(string sellerFulfillmentOrde
120
120
return true ;
121
121
}
122
122
123
- public bool UpdateFulfillmentOrder ( string sellerFulfillmentOrderId ) =>
124
- Task . Run ( ( ) => UpdateFulfillmentOrderAsync ( sellerFulfillmentOrderId ) ) . ConfigureAwait ( false ) . GetAwaiter ( ) . GetResult ( ) ;
125
- public async Task < bool > UpdateFulfillmentOrderAsync ( string sellerFulfillmentOrderId )
123
+ public bool CancelFulfillmentOrder ( string sellerFulfillmentOrderId ) =>
124
+ Task . Run ( ( ) => CancelFulfillmentOrderAsync ( sellerFulfillmentOrderId ) ) . ConfigureAwait ( false ) . GetAwaiter ( ) . GetResult ( ) ;
125
+ public async Task < bool > CancelFulfillmentOrderAsync ( string sellerFulfillmentOrderId )
126
126
{
127
127
await CreateAuthorizedRequestAsync ( FulFillmentOutboundApiUrls . CancelFulfillmentOrder ( sellerFulfillmentOrderId ) , RestSharp . Method . PUT ) ;
128
128
You can’t perform that action at this time.
0 commit comments