Show / Hide Table of Contents

Class DimensionCompatibility

The compatibility for a single dimension.

Inheritance
System.Object
DimensionCompatibility
Implements
Google.Protobuf.IMessage<DimensionCompatibility>
System.IEquatable<DimensionCompatibility>
Google.Protobuf.IDeepCloneable<DimensionCompatibility>
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 DimensionCompatibility : IMessage<DimensionCompatibility>, IEquatable<DimensionCompatibility>, IDeepCloneable<DimensionCompatibility>, IBufferMessage, IMessage

Constructors

DimensionCompatibility()

Declaration
public DimensionCompatibility()

DimensionCompatibility(DimensionCompatibility)

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

Properties

Compatibility

The compatibility of this dimension. If the compatibility is COMPATIBLE, this dimension can be successfully added to the report.

Declaration
public Compatibility Compatibility { get; set; }
Property Value
Type Description
Compatibility

DimensionMetadata

The dimension metadata contains the API name for this compatibility information. The dimension metadata also contains other helpful information like the UI name and description.

Declaration
public DimensionMetadata DimensionMetadata { get; set; }
Property Value
Type Description
DimensionMetadata

HasCompatibility

Gets whether the "compatibility" field is set

Declaration
public bool HasCompatibility { get; }
Property Value
Type Description
System.Boolean
In This Article
Back to top