Show / Hide Table of Contents

Class DimensionMetadata

Explains a dimension.

Inheritance
System.Object
DimensionMetadata
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.AnalyticsData.v1alpha.Data
Assembly: Google.Apis.AnalyticsData.v1alpha.dll
Syntax
public class DimensionMetadata : IDirectResponseSchema

Properties

ApiName

This dimension's name. Useable in Dimension's name. For example, eventName.

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

CustomDefinition

True if the dimension is a custom dimension for this property.

Declaration
[JsonProperty("customDefinition")]
public virtual bool? CustomDefinition { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DeprecatedApiNames

Still usable but deprecated names for this dimension. If populated, this dimension is available by either apiName or one of deprecatedApiNames for a period of time. After the deprecation period, the dimension will be available only by apiName.

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

Description

Description of how this dimension is used and calculated.

Declaration
[JsonProperty("description")]
public virtual string Description { 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

UiName

This dimension's name within the Google Analytics user interface. For example, Event name.

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

Implements

IDirectResponseSchema
In This Article
Back to top