class Google::Apis::DfareportingV2_1::Report::CrossDimensionReachCriteria

The report criteria for a report of type “CROSS_DIMENSION_REACH”.

Attributes

breakdown[RW]

The list of dimensions the report should include. Corresponds to the JSON property `breakdown` @return [Array<Google::Apis::DfareportingV2_1::SortedDimension>]

date_range[RW]

Represents a date range. Corresponds to the JSON property `dateRange` @return [Google::Apis::DfareportingV2_1::DateRange]

dimension[RW]

The dimension option. Corresponds to the JSON property `dimension` @return [String]

dimension_filters[RW]

The list of filters on which dimensions are filtered. Corresponds to the JSON property `dimensionFilters` @return [Array<Google::Apis::DfareportingV2_1::DimensionValue>]

metric_names[RW]

The list of names of metrics the report should include. Corresponds to the JSON property `metricNames` @return [Array<String>]

overlap_metric_names[RW]

The list of names of overlap metrics the report should include. Corresponds to the JSON property `overlapMetricNames` @return [Array<String>]

pivoted[RW]

Whether the report is pivoted or not. Defaults to true. Corresponds to the JSON property `pivoted` @return [Boolean]

pivoted?[RW]

Whether the report is pivoted or not. Defaults to true. Corresponds to the JSON property `pivoted` @return [Boolean]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/dfareporting_v2_1/classes.rb, line 9033
def update!(**args)
  @breakdown = args[:breakdown] unless args[:breakdown].nil?
  @date_range = args[:date_range] unless args[:date_range].nil?
  @dimension = args[:dimension] unless args[:dimension].nil?
  @dimension_filters = args[:dimension_filters] unless args[:dimension_filters].nil?
  @metric_names = args[:metric_names] unless args[:metric_names].nil?
  @overlap_metric_names = args[:overlap_metric_names] unless args[:overlap_metric_names].nil?
  @pivoted = args[:pivoted] unless args[:pivoted].nil?
end