Show / Hide Table of Contents

Class RealtimeData

Real time data for a given view (profile).

Inheritance
System.Object
RealtimeData
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.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class RealtimeData : 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<RealtimeData.ColumnHeadersData> ColumnHeaders { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<RealtimeData.ColumnHeadersData>

ETag

The ETag of the item.

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

Id

Unique ID for this data response.

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

Kind

Resource type.

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

ProfileInfo

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

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

Query

Real time data request query parameters.

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

Rows

Real time 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
System.Collections.Generic.IList<System.Collections.Generic.IList<System.String>>

SelfLink

Link to this page.

Declaration
[JsonProperty("selfLink")]
public virtual string SelfLink { get; set; }
Property Value
Type Description
System.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
System.Nullable<System.Int32>

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
System.Collections.Generic.IDictionary<System.String, System.String>

Implements

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