forked from abuzuhri/Amazon-SP-API-CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Kevin Venclovas
committed
Apr 29, 2024
1 parent
9701c03
commit 2238db3
Showing
14 changed files
with
538 additions
and
396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
Source/FikaAmazonAPI/Parameter/FulFillmentInbound/ParameterGetListInboundPlans.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
Source/FikaAmazonAPI/Parameter/FulFillmentInbound/ParameterGetShipmentItems.cs
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
Source/FikaAmazonAPI/Parameter/FulFillmentInbound/ParameterGetShipments.cs
This file was deleted.
Oops, something went wrong.
7 changes: 2 additions & 5 deletions
7
Source/FikaAmazonAPI/Parameter/FulFillmentInbound/ParameterListInboundPlan.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
using FikaAmazonAPI.Search; | ||
|
||
namespace FikaAmazonAPI.Parameter.FulFillmentInbound | ||
namespace FikaAmazonAPI.Parameter.FulFillmentInbound | ||
{ | ||
public class ParameterListInboundPlan : ParameterBased | ||
public class ParameterListInboundPlan : PaginationParameter | ||
{ | ||
public string InboundPlanId { get; set; } | ||
public int? PageSize { get; set; } | ||
public string PaginationToken { get; set; } | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
Source/FikaAmazonAPI/Parameter/FulFillmentInbound/ParameterListPackingGroupItems.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using FikaAmazonAPI.Search; | ||
|
||
namespace FikaAmazonAPI.Parameter.FulFillmentInbound | ||
{ | ||
public class ParameterListPackingGroupItems : PaginationParameter | ||
{ | ||
public string InboundPlanId { get; set; } | ||
public string PackingOptionId { get; set; } | ||
public string PackingGroupId { get; set; } | ||
public string PaginationToken { get; set; } | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
Source/FikaAmazonAPI/Parameter/FulFillmentInbound/ParameterListTransportationOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace FikaAmazonAPI.Parameter.FulFillmentInbound | ||
{ | ||
public class ParameterListTransportationOptions : PaginationParameter | ||
{ | ||
public string PlacementOptionId { get; set; } | ||
public string ShipmentId { get; set; } | ||
public string PaginationToken { get; set; } | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
Source/FikaAmazonAPI/Parameter/FulFillmentInbound/ParameterUpdateItemComplianceDetails.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using FikaAmazonAPI.Search; | ||
|
||
namespace FikaAmazonAPI.Parameter.FulFillmentInbound | ||
{ | ||
public class ParameterUpdateItemComplianceDetails : ParameterBased | ||
{ | ||
public string MarketplaceId { get; set; } | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Source/FikaAmazonAPI/Parameter/FulFillmentInbound/ParematerListItemComplianceDetails.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using FikaAmazonAPI.Search; | ||
using System.Collections.Generic; | ||
|
||
namespace FikaAmazonAPI.Parameter.FulFillmentInbound | ||
{ | ||
public class ParematerListItemComplianceDetails : ParameterBased | ||
{ | ||
public ICollection<string> MSkus { get; set; } | ||
public string MarketplaceId { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.