Show / Hide Table of Contents

Class CustomAttribute

Inheritance
System.Object
CustomAttribute
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.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
System.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
System.Collections.Generic.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
System.String

Value

The value of the attribute.

Declaration
[JsonProperty("value")]
public virtual string Value { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top