class Google::Apis::DfareportingV3_4::Report::CrossDimensionReachCriteria
The report criteria for a report of type “CROSS_DIMENSION_REACH”.
Attributes
The list of dimensions the report should include. Corresponds to the JSON property `breakdown` @return [Array<Google::Apis::DfareportingV3_4::SortedDimension>]
Represents a date range. Corresponds to the JSON property `dateRange` @return [Google::Apis::DfareportingV3_4::DateRange]
The dimension option. Corresponds to the JSON property `dimension` @return [String]
The list of filters on which dimensions are filtered. Corresponds to the JSON property `dimensionFilters` @return [Array<Google::Apis::DfareportingV3_4::DimensionValue>]
The list of names of metrics the report should include. Corresponds to the JSON property `metricNames` @return [Array<String>]
The list of names of overlap metrics the report should include. Corresponds to the JSON property `overlapMetricNames` @return [Array<String>]
Whether the report is pivoted or not. Defaults to true. Corresponds to the JSON property `pivoted` @return [Boolean]
Whether the report is pivoted or not. Defaults to true. Corresponds to the JSON property `pivoted` @return [Boolean]
Public Class Methods
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 10621 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 10626 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