Show / Hide Table of Contents

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.

Inheritance
object
CustomAttribute
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX