Class CloudExportAdditionalProperties
Product property for the Cloud Retail API. For example, properties for a TV product could be "Screen-Resolution" or "Screen-Size".
Implements
Inherited Members
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 |