class Google::Apis::AnalyticsdataV1beta::DimensionCompatibility

The compatibility for a single dimension.

Attributes

compatibility[RW]

The compatibility of this dimension. If the compatibility is COMPATIBLE, this dimension can be successfully added to the report. Corresponds to the JSON property `compatibility` @return [String]

dimension_metadata[RW]

Explains a dimension. Corresponds to the JSON property `dimensionMetadata` @return [Google::Apis::AnalyticsdataV1beta::DimensionMetadata]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 516
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 521
def update!(**args)
  @compatibility = args[:compatibility] if args.key?(:compatibility)
  @dimension_metadata = args[:dimension_metadata] if args.key?(:dimension_metadata)
end