Show / Hide Table of Contents

Class FuseboxItemThreadMatchInfo

In the context of a search, the MatchInfo contains information about which Items matched the query.

Inheritance
object
FuseboxItemThreadMatchInfo
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class FuseboxItemThreadMatchInfo : IDirectResponseSchema

Properties

ClusterId

If SearchQuery.Options.Clustering is present, the query will be treated as a cluster query, and this field may be populated with the cluster ID of the cluster to which this thread belongs, if any. The cluster ID will be a label on the message.

Declaration
[JsonProperty("clusterId")]
public virtual string ClusterId { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

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

LastMatchingItemId

The server id of the last item that matched the query. This is always set, regardless of the compute_matching_items_per_thread option. This is the value by which search results are sorted, in descending (i.e. newest first) order.

Declaration
[JsonProperty("lastMatchingItemId")]
public virtual ulong? LastMatchingItemId { get; set; }
Property Value
Type Description
ulong?

LastMatchingItemKey

The MultiKey of the last item that matched the query. This is always set, regardless of the compute_matching_items_per_thread option. This is the value by which search results are sorted, in descending (i.e. newest first) order.

Declaration
[JsonProperty("lastMatchingItemKey")]
public virtual MultiKey LastMatchingItemKey { get; set; }
Property Value
Type Description
MultiKey

MatchingItemKey

If SearchQuery.Options.compute_matching_items_per_thread, this field will contain the keys of all items that matched the query, in ascending order. Note that this option requires extra computation.

Declaration
[JsonProperty("matchingItemKey")]
public virtual IList<MultiKey> MatchingItemKey { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<T><MultiKey>

Rank

The rank of this ItemThread in the result set of the query. This rank may be used to sort ItemThreads in proper order. Ranks are specific to a query, and stable for a given query at a specific time.

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

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX