class Google::Apis::AnalyticsdataV1beta::MetricCompatibility

The compatibility for a single metric.

Attributes

compatibility[RW]

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

metric_metadata[RW]

Explains a metric. Corresponds to the JSON property `metricMetadata` @return [Google::Apis::AnalyticsdataV1beta::MetricMetadata]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 899
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 904
def update!(**args)
  @compatibility = args[:compatibility] if args.key?(:compatibility)
  @metric_metadata = args[:metric_metadata] if args.key?(:metric_metadata)
end