class Google::Apis::DfareportingV3_3::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::DfareportingV3_3::SortedDimension>]

date_range[RW]

Represents a date range. Corresponds to the JSON property `dateRange` @return [Google::Apis::DfareportingV3_3::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::DfareportingV3_3::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 lib/google/apis/dfareporting_v3_3/classes.rb, line 9797
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 9802
def update!(**args)
  @breakdown = args[:breakdown] if args.key?(:breakdown)
  @date_range = args[:date_range] if args.key?(:date_range)
  @dimension = args[:dimension] if args.key?(:dimension)
  @dimension_filters = args[:dimension_filters] if args.key?(:dimension_filters)
  @metric_names = args[:metric_names] if args.key?(:metric_names)
  @overlap_metric_names = args[:overlap_metric_names] if args.key?(:overlap_metric_names)
  @pivoted = args[:pivoted] if args.key?(:pivoted)
end