Show / Hide Table of Contents

Class ResultTableColumnHeader

The description of a column of the result table.

Inheritance
System.Object
ResultTableColumnHeader
Implements
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.YouTubeAnalytics.v2.Data
Assembly: Google.Apis.YouTubeAnalytics.v2.dll
Syntax
public class ResultTableColumnHeader : IDirectResponseSchema

Properties

ColumnType

The type of the column (DIMENSION or METRIC).

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

DataType

The type of the data in the column (STRING, INTEGER, FLOAT, etc.).

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

ETag

The ETag of the item.

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

Name

The name of the dimension or metric.

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

Implements

IDirectResponseSchema
Back to top