Show / Hide Table of Contents

Class SearchAnalyticsQueryResponse

A list of rows, one per result, grouped by key. Metrics in each row are aggregated for all data grouped by that key either by page or property, as specified by the aggregation type parameter.

Inheritance
System.Object
SearchAnalyticsQueryResponse
Implements
Google.Apis.Requests.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.Webmasters.v3.Data
Assembly: Google.Apis.Webmasters.v3.dll
Syntax
public class SearchAnalyticsQueryResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

ResponseAggregationType

How the results were aggregated.

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

Rows

A list of rows grouped by the key values in the order given in the query.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top