You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets the Global Trade Item Number (GTIN). These identifiers include UPC (in North America), EAN (in Europe), JAN (in Japan), and ISBN (for books).
44
+
/// </summary>
45
+
[JsonProperty("gtin")]
46
+
publicstringGtin{get;set;}
47
+
48
+
/// <summary>
49
+
/// Gets or sets the attribute combination price. This way a store owner can override the default product price when this attribute combination is added to the cart. For example, you can give a discount this way.
50
+
/// </summary>
51
+
[JsonProperty("overridden_price")]
52
+
publicdecimal?OverriddenPrice{get;set;}
53
+
54
+
/// <summary>
55
+
/// Gets or sets the identifier of picture associated with this combination
0 commit comments