Show / Hide Table of Contents

Class ObjectDisplayOptions

The display options for an object.

Inheritance
System.Object
ObjectDisplayOptions
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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class ObjectDisplayOptions : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Metalines

Defines the properties that will be displayed in the metalines of the search results. The property values will be displayed in the order given here. If a property holds multiple values, all of the values will be diplayed before the next properties. For this reason, it is a good practice to specify singular properties before repeated properties in this list. All of the properties must set is_returnable to true. The maximum number of metalines is 3.

Declaration
[JsonProperty("metalines")]
public virtual IList<Metaline> Metalines { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Metaline>

ObjectDisplayLabel

The user friendly label to display in the search result to inidicate the type of the item. This is OPTIONAL; if not given, an object label will not be displayed on the context line of the search results. The maximum length is 32 characters.

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

Implements

IDirectResponseSchema
Back to top