Skip to content

Commit 3c9c28d

Browse files
authored
Update ItemBrowseClassificationsByMarketplace.cs
1 parent 4c82897 commit 3c9c28d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Source/FikaAmazonAPI/AmazonSpApiSDK/Models/CatalogItems/V20220401/ItemBrowseClassificationsByMarketplace.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace FikaAmazonAPI.AmazonSpApiSDK.Models.CatalogItems.V20220401
2020
{
2121
/// <summary>
22-
/// Dimensions associated with the item in the Amazon catalog for the indicated Amazon marketplace.
22+
/// Classification (browse node) associated with the item in the Amazon catalog for the indicated Amazon marketplace.
2323
/// </summary>
2424
[DataContract]
2525
public partial class ItemBrowseClassificationsByMarketplace : IEquatable<ItemBrowseClassificationsByMarketplace>, IValidatableObject
@@ -33,14 +33,13 @@ protected ItemBrowseClassificationsByMarketplace() { }
3333
/// Initializes a new instance of the <see cref="ItemBrowseClassificationsByMarketplace" /> class.
3434
/// </summary>
3535
/// <param name="marketplaceId">Amazon marketplace identifier. (required).</param>
36-
/// <param name="item">Dimensions of an Amazon catalog item..</param>
37-
/// <param name="package">Dimensions of an Amazon catalog item in its packaging..</param>
36+
/// <param name="classifications">Classification (browse node) Array of an Amazon catalog item.</param>
3837
public ItemBrowseClassificationsByMarketplace(string marketplaceId = default(string), List<ItemBrowseClassification> classifications = default(List<ItemBrowseClassification>))
3938
{
4039
// to ensure "marketplaceId" is required (not null)
4140
if (marketplaceId == null)
4241
{
43-
throw new InvalidDataException("marketplaceId is a required property for ItemDimensionsByMarketplace and cannot be null");
42+
throw new InvalidDataException("marketplaceId is a required property for ItemBrowseClassificationsByMarketplace and cannot be null");
4443
}
4544
else
4645
{

0 commit comments

Comments
 (0)