Class CustomAttribute
A message that represents custom attributes. Exactly one of value
or groupValues
must be provided. Maximum
allowed number of characters for each custom attribute is 10240 (represents sum of characters for name and
value). Maximum 2500 custom attributes can be set per merchant, with total size of 102.4kB.
Implements
Inherited Members
Namespace: Google.Apis.ShoppingContent.v2_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class CustomAttribute : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
GroupValues
Subattributes within this attribute group. Exactly one of value or groupValues must be provided.
Declaration
[JsonProperty("groupValues")]
public virtual IList<CustomAttribute> GroupValues { get; set; }
Property Value
Type | Description |
---|---|
IList<CustomAttribute> |
Name
The name of the attribute. Underscores will be replaced by spaces upon insertion.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Value
The value of the attribute.
Declaration
[JsonProperty("value")]
public virtual string Value { get; set; }
Property Value
Type | Description |
---|---|
string |