Class: Google::Apis::DfareportingV2_6::ReportCompatibleFields
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_6::ReportCompatibleFields
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_6/classes.rb,
generated/google/apis/dfareporting_v2_6/representations.rb,
generated/google/apis/dfareporting_v2_6/representations.rb
Overview
Represents fields that are compatible to be selected for a report of type " STANDARD".
Instance Attribute Summary collapse
-
#dimension_filters ⇒ Array<Google::Apis::DfareportingV2_6::Dimension>
Dimensions which are compatible to be selected in the "dimensionFilters" section of the report.
-
#dimensions ⇒ Array<Google::Apis::DfareportingV2_6::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#reportCompatibleFields.
-
#metrics ⇒ Array<Google::Apis::DfareportingV2_6::Metric>
Metrics which are compatible to be selected in the "metricNames" section of the report.
-
#pivoted_activity_metrics ⇒ Array<Google::Apis::DfareportingV2_6::Metric>
Metrics which are compatible to be selected as activity metrics to pivot on in the "activities" section of the report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportCompatibleFields
constructor
A new instance of ReportCompatibleFields.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReportCompatibleFields
Returns a new instance of ReportCompatibleFields
10121 10122 10123 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10121 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_filters ⇒ Array<Google::Apis::DfareportingV2_6::Dimension>
Dimensions which are compatible to be selected in the "dimensionFilters"
section of the report.
Corresponds to the JSON property dimensionFilters
10096 10097 10098 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10096 def dimension_filters @dimension_filters end |
#dimensions ⇒ Array<Google::Apis::DfareportingV2_6::Dimension>
Dimensions which are compatible to be selected in the "dimensions" section of
the report.
Corresponds to the JSON property dimensions
10102 10103 10104 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10102 def dimensions @dimensions end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#reportCompatibleFields.
Corresponds to the JSON property kind
10107 10108 10109 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10107 def kind @kind end |
#metrics ⇒ Array<Google::Apis::DfareportingV2_6::Metric>
Metrics which are compatible to be selected in the "metricNames" section of
the report.
Corresponds to the JSON property metrics
10113 10114 10115 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10113 def metrics @metrics end |
#pivoted_activity_metrics ⇒ Array<Google::Apis::DfareportingV2_6::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
10119 10120 10121 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10119 def pivoted_activity_metrics @pivoted_activity_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10126 10127 10128 10129 10130 10131 10132 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10126 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) end |