@@ -85,7 +85,7 @@ protected ItemSummaryByMarketplace() { }
85
85
/// <param name="size">Name of the size associated with an Amazon catalog item..</param>
86
86
/// <param name="style">Name of the style associated with an Amazon catalog item..</param>
87
87
/// <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 ) )
89
89
{
90
90
// to ensure "marketplaceId" is required (not null)
91
91
if ( marketplaceId == null )
@@ -108,6 +108,7 @@ protected ItemSummaryByMarketplace() { }
108
108
this . Size = size ;
109
109
this . Style = style ;
110
110
this . WebsiteDisplayGroup = websiteDisplayGroup ;
111
+ this . WebsiteDisplayGroupName = websiteDisplayGroupName ;
111
112
}
112
113
113
114
/// <summary>
@@ -195,6 +196,13 @@ protected ItemSummaryByMarketplace() { }
195
196
[ DataMember ( Name = "websiteDisplayGroup" , EmitDefaultValue = false ) ]
196
197
public string WebsiteDisplayGroup { get ; set ; }
197
198
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
+
198
206
/// <summary>
199
207
/// Returns the string presentation of the object
200
208
/// </summary>
0 commit comments