class Google::Apis::DfareportingV3_3::ReportCompatibleFields

Represents fields that are compatible to be selected for a report of type “ STANDARD”.

Attributes

dimension_filters[RW]

Dimensions which are compatible to be selected in the “dimensionFilters” section of the report. Corresponds to the JSON property `dimensionFilters` @return [Array<Google::Apis::DfareportingV3_3::Dimension>]

dimensions[RW]

Dimensions which are compatible to be selected in the “dimensions” section of the report. Corresponds to the JSON property `dimensions` @return [Array<Google::Apis::DfareportingV3_3::Dimension>]

kind[RW]

The kind of resource this is, in this case dfareporting#reportCompatibleFields. Corresponds to the JSON property `kind` @return [String]

metrics[RW]

Metrics which are compatible to be selected in the “metricNames” section of the report. Corresponds to the JSON property `metrics` @return [Array<Google::Apis::DfareportingV3_3::Metric>]

pivoted_activity_metrics[RW]

Metrics which are compatible to be selected as activity metrics to pivot on in the “activities” section of the report. Corresponds to the JSON property `pivotedActivityMetrics` @return [Array<Google::Apis::DfareportingV3_3::Metric>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_3/classes.rb, line 10271
def update!(**args)
  @dimension_filters = args[:dimension_filters] if args.key?(:dimension_filters)
  @dimensions = args[:dimensions] if args.key?(:dimensions)
  @kind = args[:kind] if args.key?(:kind)
  @metrics = args[:metrics] if args.key?(:metrics)
  @pivoted_activity_metrics = args[:pivoted_activity_metrics] if args.key?(:pivoted_activity_metrics)
end