Class: Google::Apis::DfareportingV4::Report::CrossDimensionReachCriteria
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::Report::CrossDimensionReachCriteria
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
The report criteria for a report of type "CROSS_DIMENSION_REACH".
Instance Attribute Summary collapse
-
#breakdown ⇒ Array<Google::Apis::DfareportingV4::SortedDimension>
The list of dimensions the report should include.
-
#date_range ⇒ Google::Apis::DfareportingV4::DateRange
Represents a date range.
-
#dimension ⇒ String
The dimension option.
-
#dimension_filters ⇒ Array<Google::Apis::DfareportingV4::DimensionValue>
The list of filters on which dimensions are filtered.
-
#metric_names ⇒ Array<String>
The list of names of metrics the report should include.
-
#overlap_metric_names ⇒ Array<String>
The list of names of overlap metrics the report should include.
-
#pivoted ⇒ Boolean
(also: #pivoted?)
Whether the report is pivoted or not.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CrossDimensionReachCriteria
constructor
A new instance of CrossDimensionReachCriteria.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CrossDimensionReachCriteria
Returns a new instance of CrossDimensionReachCriteria.
10689 10690 10691 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10689 def initialize(**args) update!(**args) end |
Instance Attribute Details
#breakdown ⇒ Array<Google::Apis::DfareportingV4::SortedDimension>
The list of dimensions the report should include.
Corresponds to the JSON property breakdown
10656 10657 10658 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10656 def breakdown @breakdown end |
#date_range ⇒ Google::Apis::DfareportingV4::DateRange
Represents a date range.
Corresponds to the JSON property dateRange
10661 10662 10663 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10661 def date_range @date_range end |
#dimension ⇒ String
The dimension option.
Corresponds to the JSON property dimension
10666 10667 10668 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10666 def dimension @dimension end |
#dimension_filters ⇒ Array<Google::Apis::DfareportingV4::DimensionValue>
The list of filters on which dimensions are filtered.
Corresponds to the JSON property dimensionFilters
10671 10672 10673 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10671 def dimension_filters @dimension_filters end |
#metric_names ⇒ Array<String>
The list of names of metrics the report should include.
Corresponds to the JSON property metricNames
10676 10677 10678 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10676 def metric_names @metric_names end |
#overlap_metric_names ⇒ Array<String>
The list of names of overlap metrics the report should include.
Corresponds to the JSON property overlapMetricNames
10681 10682 10683 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10681 def overlap_metric_names @overlap_metric_names end |
#pivoted ⇒ Boolean Also known as: pivoted?
Whether the report is pivoted or not. Defaults to true.
Corresponds to the JSON property pivoted
10686 10687 10688 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10686 def pivoted @pivoted end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10694 10695 10696 10697 10698 10699 10700 10701 10702 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 10694 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 |