Show / Hide Table of Contents

Class McfData.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
McfData.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 and metric values data types such as INTEGER, DOUBLE, CURRENCY, MCF_SEQUENCE 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