Show / Hide Table of Contents

Class CloudExportAdditionalProperties

Product property for the Cloud Retail API. For example, properties for a TV product could be "Screen-Resolution" or "Screen-Size".

Inheritance
object
CloudExportAdditionalProperties
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.Merchant.products_v1beta.Data
Assembly: Google.Apis.Merchant.products_v1beta.dll
Syntax
public class CloudExportAdditionalProperties : IDirectResponseSchema

Properties

BoolValue

Boolean value of the given property. For example for a TV product, "True" or "False" if the screen is UHD.

Declaration
[JsonProperty("boolValue")]
public virtual bool? BoolValue { get; set; }
Property Value
Type Description
bool?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

FloatValue

Float values of the given property. For example for a TV product 1.2345. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.

Declaration
[JsonProperty("floatValue")]
public virtual IList<float?> FloatValue { get; set; }
Property Value
Type Description
IList<float?>

IntValue

Integer values of the given property. For example, 1080 for a TV product's Screen Resolution. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order.

Declaration
[JsonProperty("intValue")]
public virtual IList<long?> IntValue { get; set; }
Property Value
Type Description
IList<long?>

MaxValue

Maximum float value of the given property. For example for a TV product 100.00.

Declaration
[JsonProperty("maxValue")]
public virtual float? MaxValue { get; set; }
Property Value
Type Description
float?

MinValue

Minimum float value of the given property. For example for a TV product 1.00.

Declaration
[JsonProperty("minValue")]
public virtual float? MinValue { get; set; }
Property Value
Type Description
float?

PropertyName

Name of the given property. For example, "Screen-Resolution" for a TV product. Maximum string size is 256 characters.

Declaration
[JsonProperty("propertyName")]
public virtual string PropertyName { get; set; }
Property Value
Type Description
string

TextValue

Text value of the given property. For example, "8K(UHD)" could be a text value for a TV product. Maximum repeatedness of this value is 400. Values are stored in an arbitrary but consistent order. Maximum string size is 256 characters.

Declaration
[JsonProperty("textValue")]
public virtual IList<string> TextValue { get; set; }
Property Value
Type Description
IList<string>

UnitCode

Unit of the given property. For example, "Pixels" for a TV product. Maximum string size is 256B.

Declaration
[JsonProperty("unitCode")]
public virtual string UnitCode { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX