Class: Google::Apis::DfareportingV3_5::ReachReportCompatibleFields
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_5::ReachReportCompatibleFields
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/representations.rb
Overview
Represents fields that are compatible to be selected for a report of type " REACH".
Instance Attribute Summary collapse
-
#dimension_filters ⇒ Array<Google::Apis::DfareportingV3_5::Dimension>
Dimensions which are compatible to be selected in the "dimensionFilters" section of the report.
-
#dimensions ⇒ Array<Google::Apis::DfareportingV3_5::Dimension>
Dimensions which are compatible to be selected in the "dimensions" section of the report.
-
#kind ⇒ String
The kind of resource this is, in this case dfareporting# reachReportCompatibleFields.
-
#metrics ⇒ Array<Google::Apis::DfareportingV3_5::Metric>
Metrics which are compatible to be selected in the "metricNames" section of the report.
-
#pivoted_activity_metrics ⇒ Array<Google::Apis::DfareportingV3_5::Metric>
Metrics which are compatible to be selected as activity metrics to pivot on in the "activities" section of the report.
-
#reach_by_frequency_metrics ⇒ Array<Google::Apis::DfareportingV3_5::Metric>
Metrics which are compatible to be selected in the " reachByFrequencyMetricNames" section of the report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReachReportCompatibleFields
constructor
A new instance of ReachReportCompatibleFields.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReachReportCompatibleFields
Returns a new instance of ReachReportCompatibleFields.
9754 9755 9756 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9754 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_filters ⇒ Array<Google::Apis::DfareportingV3_5::Dimension>
Dimensions which are compatible to be selected in the "dimensionFilters"
section of the report.
Corresponds to the JSON property dimensionFilters
9722 9723 9724 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9722 def dimension_filters @dimension_filters end |
#dimensions ⇒ Array<Google::Apis::DfareportingV3_5::Dimension>
Dimensions which are compatible to be selected in the "dimensions" section of
the report.
Corresponds to the JSON property dimensions
9728 9729 9730 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9728 def dimensions @dimensions end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#
reachReportCompatibleFields.
Corresponds to the JSON property kind
9734 9735 9736 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9734 def kind @kind end |
#metrics ⇒ Array<Google::Apis::DfareportingV3_5::Metric>
Metrics which are compatible to be selected in the "metricNames" section of
the report.
Corresponds to the JSON property metrics
9740 9741 9742 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9740 def metrics @metrics end |
#pivoted_activity_metrics ⇒ Array<Google::Apis::DfareportingV3_5::Metric>
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
9746 9747 9748 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9746 def pivoted_activity_metrics @pivoted_activity_metrics end |
#reach_by_frequency_metrics ⇒ Array<Google::Apis::DfareportingV3_5::Metric>
Metrics which are compatible to be selected in the "
reachByFrequencyMetricNames" section of the report.
Corresponds to the JSON property reachByFrequencyMetrics
9752 9753 9754 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9752 def reach_by_frequency_metrics @reach_by_frequency_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9759 9760 9761 9762 9763 9764 9765 9766 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 9759 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) @reach_by_frequency_metrics = args[:reach_by_frequency_metrics] if args.key?(:reach_by_frequency_metrics) end |