Show / Hide Table of Contents

Class Columns

Lists columns (dimensions and metrics) for a particular report type.

Inheritance
System.Object
Columns
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 Columns : IDirectResponseSchema

Properties

AttributeNames

List of attributes names returned by columns.

Declaration
[JsonProperty("attributeNames")]
public virtual IList<string> AttributeNames { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

Etag of collection. This etag can be compared with the last response etag to check if response has changed.

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

Items

List of columns for a report type.

Declaration
[JsonProperty("items")]
public virtual IList<Column> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Column>

Kind

Collection type.

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

TotalResults

Total number of columns returned in the response.

Declaration
[JsonProperty("totalResults")]
public virtual int? TotalResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

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