Show / Hide Table of Contents

Class DimensionMetadata

Explains a dimension.

Inheritance
System.Object
DimensionMetadata
Implements
Google.Protobuf.IMessage<DimensionMetadata>
System.IEquatable<DimensionMetadata>
Google.Protobuf.IDeepCloneable<DimensionMetadata>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.dll
Syntax
public sealed class DimensionMetadata : IMessage<DimensionMetadata>, IEquatable<DimensionMetadata>, IDeepCloneable<DimensionMetadata>, IBufferMessage, IMessage

Constructors

DimensionMetadata()

Declaration
public DimensionMetadata()

DimensionMetadata(DimensionMetadata)

Declaration
public DimensionMetadata(DimensionMetadata other)
Parameters
Type Name Description
DimensionMetadata other

Properties

ApiName

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

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

Category

The display name of the category that this dimension belongs to. Similar dimensions and metrics are categorized together.

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

CustomDefinition

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

Declaration
public bool CustomDefinition { get; set; }
Property Value
Type Description
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
public RepeatedField<string> DeprecatedApiNames { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<System.String>

Description

Description of how this dimension is used and calculated.

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

UiName

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

Declaration
public string UiName { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top