Show / Hide Table of Contents

Class GaData

Analytics data for a given view (profile).

Inheritance
object
GaData
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.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class GaData : IDirectResponseSchema

Properties

ColumnHeaders

Column headers that list dimension names followed by the metric names. The order of dimensions and metrics is same as specified in the request.

Declaration
[JsonProperty("columnHeaders")]
public virtual IList<GaData.ColumnHeadersData> ColumnHeaders { get; set; }
Property Value
Type Description
IList<GaData.ColumnHeadersData>

ContainsSampledData

Determines if Analytics data contains samples.

Declaration
[JsonProperty("containsSampledData")]
public virtual bool? ContainsSampledData { get; set; }
Property Value
Type Description
bool?

DataLastRefreshed

The last refreshed time in seconds for Analytics data.

Declaration
[JsonProperty("dataLastRefreshed")]
public virtual long? DataLastRefreshed { get; set; }
Property Value
Type Description
long?

DataTable

Declaration
[JsonProperty("dataTable")]
public virtual GaData.DataTableData DataTable { get; set; }
Property Value
Type Description
GaData.DataTableData

ETag

The ETag of the item.

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

Id

Unique ID for this data response.

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

ItemsPerPage

The maximum number of rows the response can contain, regardless of the actual number of rows returned. Its value ranges from 1 to 10,000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.

Declaration
[JsonProperty("itemsPerPage")]
public virtual int? ItemsPerPage { get; set; }
Property Value
Type Description
int?

Kind

Resource type.

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

NextLink

Link to next page for this Analytics data query.

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

PreviousLink

Link to previous page for this Analytics data query.

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

ProfileInfo

Information for the view (profile), for which the Analytics data was requested.

Declaration
[JsonProperty("profileInfo")]
public virtual GaData.ProfileInfoData ProfileInfo { get; set; }
Property Value
Type Description
GaData.ProfileInfoData

Query

Analytics data request query parameters.

Declaration
[JsonProperty("query")]
public virtual GaData.QueryData Query { get; set; }
Property Value
Type Description
GaData.QueryData

Rows

Analytics data rows, where each row contains a list of dimension values followed by the metric values. The order of dimensions and metrics is same as specified in the request.

Declaration
[JsonProperty("rows")]
public virtual IList<IList<string>> Rows { get; set; }
Property Value
Type Description
IList<IList<string>>

SampleSize

The number of samples used to calculate the result.

Declaration
[JsonProperty("sampleSize")]
public virtual long? SampleSize { get; set; }
Property Value
Type Description
long?

SampleSpace

Total size of the sample space from which the samples were selected.

Declaration
[JsonProperty("sampleSpace")]
public virtual long? SampleSpace { get; set; }
Property Value
Type Description
long?

SelfLink

Link to this page.

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

TotalResults

The total number of rows for the query, regardless of the number of rows in the response.

Declaration
[JsonProperty("totalResults")]
public virtual int? TotalResults { get; set; }
Property Value
Type Description
int?

TotalsForAllResults

Total values for the requested metrics over all the results, not just the results returned in this response. The order of the metric totals is same as the metric order specified in the request.

Declaration
[JsonProperty("totalsForAllResults")]
public virtual IDictionary<string, string> TotalsForAllResults { get; set; }
Property Value
Type Description
IDictionary<string, string>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX