File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Source/FikaAmazonAPI/AmazonSpApiSDK/Models/CatalogItems/V20220401 Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 19
19
namespace FikaAmazonAPI . AmazonSpApiSDK . Models . CatalogItems . V20220401
20
20
{
21
21
/// <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.
23
23
/// </summary>
24
24
[ DataContract ]
25
25
public partial class ItemBrowseClassificationsByMarketplace : IEquatable < ItemBrowseClassificationsByMarketplace > , IValidatableObject
@@ -33,14 +33,13 @@ protected ItemBrowseClassificationsByMarketplace() { }
33
33
/// Initializes a new instance of the <see cref="ItemBrowseClassificationsByMarketplace" /> class.
34
34
/// </summary>
35
35
/// <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>
38
37
public ItemBrowseClassificationsByMarketplace ( string marketplaceId = default ( string ) , List < ItemBrowseClassification > classifications = default ( List < ItemBrowseClassification > ) )
39
38
{
40
39
// to ensure "marketplaceId" is required (not null)
41
40
if ( marketplaceId == null )
42
41
{
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" ) ;
44
43
}
45
44
else
46
45
{
You can’t perform that action at this time.
0 commit comments