Show / Hide Table of Contents

Class RealtimeData.ColumnHeadersData

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

Inheritance
System.Object
RealtimeData.ColumnHeadersData
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 ColumnHeadersData

Properties

ColumnType

Column Type. Either DIMENSION or METRIC.

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

DataType

Data type. Dimension column headers have only STRING as the data type. Metric column headers have data types for metric values such as INTEGER, DOUBLE, CURRENCY etc.

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

Name

Column name.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top