Show / Hide Table of Contents

Class McfData.QueryData

Analytics data request query parameters.

Inheritance
System.Object
McfData.QueryData
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.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class QueryData

Properties

Dimensions

List of analytics dimensions.

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

EndDate

End date.

Declaration
[JsonProperty("end-date")]
public virtual string EndDate { get; set; }
Property Value
Type Description
System.String

Filters

Comma-separated list of dimension or metric filters.

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

Ids

Unique table ID.

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

MaxResults

Maximum results per page.

Declaration
[JsonProperty("max-results")]
public virtual int? MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Metrics

List of analytics metrics.

Declaration
[JsonProperty("metrics")]
public virtual IList<string> Metrics { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

SamplingLevel

Desired sampling level

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

Segment

Analytics advanced segment.

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

Sort

List of dimensions or metrics based on which Analytics data is sorted.

Declaration
[JsonProperty("sort")]
public virtual IList<string> Sort { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

StartDate

Start date.

Declaration
[JsonProperty("start-date")]
public virtual string StartDate { get; set; }
Property Value
Type Description
System.String

StartIndex

Start index.

Declaration
[JsonProperty("start-index")]
public virtual int? StartIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
In This Article
Back to top