Show / Hide Table of Contents

Class Metadata

Metadata of a matched search result.

Inheritance
System.Object
Metadata
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 Metadata : IDirectResponseSchema

Properties

CreateTime

The creation time for this document or object in the search result.

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
System.Object

DisplayOptions

Options that specify how to display a structured data search result.

Declaration
[JsonProperty("displayOptions")]
public virtual ResultDisplayMetadata DisplayOptions { get; set; }
Property Value
Type Description
ResultDisplayMetadata

ETag

The ETag of the item.

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

Fields

Indexed fields in structured data, returned as a generic named property.

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

MimeType

Mime type of the search result.

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

ObjectType

Object type of the search result.

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

Owner

Owner (usually creator) of the document or object of the search result.

Declaration
[JsonProperty("owner")]
public virtual Person Owner { get; set; }
Property Value
Type Description
Person

Source

The named source for the result, such as Gmail.

Declaration
[JsonProperty("source")]
public virtual Source Source { get; set; }
Property Value
Type Description
Source

UpdateTime

The last modified date for the object in the search result. If not set in the item, the value returned here is empty. When updateTime is used for calculating freshness and is not set, this value defaults to 2 years from the current time.

Declaration
[JsonProperty("updateTime")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
Back to top