Class NamedProperty
A typed name-value pair for structured data. The type of the value should be the same as the registered type for
the name
property in the object definition of objectType
.
Inheritance
NamedProperty
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class NamedProperty : IDirectResponseSchema
Properties
BooleanValue
Declaration
[JsonProperty("booleanValue")]
public virtual bool? BooleanValue { get; set; }
Property Value
DateValues
Declaration
[JsonProperty("dateValues")]
public virtual DateValues DateValues { get; set; }
Property Value
DoubleValues
Declaration
[JsonProperty("doubleValues")]
public virtual DoubleValues DoubleValues { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
EnumValues
Declaration
[JsonProperty("enumValues")]
public virtual EnumValues EnumValues { get; set; }
Property Value
HtmlValues
Declaration
[JsonProperty("htmlValues")]
public virtual HtmlValues HtmlValues { get; set; }
Property Value
IntegerValues
Declaration
[JsonProperty("integerValues")]
public virtual IntegerValues IntegerValues { get; set; }
Property Value
Name
The name of the property. This name should correspond to the name of the property that was registered for
object definition in the schema. The maximum allowable length for this property is 256 characters.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
ObjectValues
Declaration
[JsonProperty("objectValues")]
public virtual ObjectValues ObjectValues { get; set; }
Property Value
TextValues
Declaration
[JsonProperty("textValues")]
public virtual TextValues TextValues { get; set; }
Property Value
TimestampValues
Declaration
[JsonProperty("timestampValues")]
public virtual TimestampValues TimestampValues { get; set; }
Property Value
Implements