Skip to content

Commit cf6c674

Browse files
committed
fix #300
1 parent a5c477a commit cf6c674

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected ItemSummaryByMarketplace() { }
8585
/// <param name="size">Name of the size associated with an Amazon catalog item..</param>
8686
/// <param name="style">Name of the style associated with an Amazon catalog item..</param>
8787
/// <param name="websiteDisplayGroup">Name of the website display group associated with an Amazon catalog item..</param>
88-
public ItemSummaryByMarketplace(string marketplaceId = default(string), string brand = default(string), ItemBrowseClassification browseClassification = default(ItemBrowseClassification), string color = default(string), ItemClassificationEnum? itemClassification = default(ItemClassificationEnum?), string itemName = default(string), string manufacturer = default(string), string modelNumber = default(string), int? packageQuantity = default(int?), string partNumber = default(string), string size = default(string), string style = default(string), string websiteDisplayGroup = default(string))
88+
public ItemSummaryByMarketplace(string marketplaceId = default(string), string brand = default(string), ItemBrowseClassification browseClassification = default(ItemBrowseClassification), string color = default(string), ItemClassificationEnum? itemClassification = default(ItemClassificationEnum?), string itemName = default(string), string manufacturer = default(string), string modelNumber = default(string), int? packageQuantity = default(int?), string partNumber = default(string), string size = default(string), string style = default(string), string websiteDisplayGroup = default(string), string websiteDisplayGroupName = default(string))
8989
{
9090
// to ensure "marketplaceId" is required (not null)
9191
if (marketplaceId == null)
@@ -108,6 +108,7 @@ protected ItemSummaryByMarketplace() { }
108108
this.Size = size;
109109
this.Style = style;
110110
this.WebsiteDisplayGroup = websiteDisplayGroup;
111+
this.WebsiteDisplayGroupName = websiteDisplayGroupName;
111112
}
112113

113114
/// <summary>
@@ -195,6 +196,13 @@ protected ItemSummaryByMarketplace() { }
195196
[DataMember(Name = "websiteDisplayGroup", EmitDefaultValue = false)]
196197
public string WebsiteDisplayGroup { get; set; }
197198

199+
/// <summary>
200+
/// Name of the website display group associated with an Amazon catalog item.
201+
/// </summary>
202+
/// <value>Name of the website display group associated with an Amazon catalog item.</value>
203+
[DataMember(Name = "websiteDisplayGroupName", EmitDefaultValue = false)]
204+
public string WebsiteDisplayGroupName { get; set; }
205+
198206
/// <summary>
199207
/// Returns the string presentation of the object
200208
/// </summary>

0 commit comments

Comments
 (0)