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 are displayed in the metalines of the search results. The property values are displayed in the order given here. If a property holds multiple values, all of the values are displayed 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 indicate the type of the item. This is OPTIONAL; if not provided, an object label isn't displayed on the context line of the search results. The maximum length is 64 characters.

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

Implements

IDirectResponseSchema
Back to top