Class: Google::Apis::DfareportingV2_8::ReportCompatibleFields
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_8::ReportCompatibleFields
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/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_8::Dimension>
Dimensions which are compatible to be selected in the "dimensionFilters" section of the report.
-
#dimensions ⇒ Array<Google::Apis::DfareportingV2_8::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_8::Metric>
Metrics which are compatible to be selected in the "metricNames" section of the report.
-
#pivoted_activity_metrics ⇒ Array<Google::Apis::DfareportingV2_8::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
10321 10322 10323 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10321 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimension_filters ⇒ Array<Google::Apis::DfareportingV2_8::Dimension>
Dimensions which are compatible to be selected in the "dimensionFilters"
section of the report.
Corresponds to the JSON property dimensionFilters
10296 10297 10298 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10296 def dimension_filters @dimension_filters end |
#dimensions ⇒ Array<Google::Apis::DfareportingV2_8::Dimension>
Dimensions which are compatible to be selected in the "dimensions" section of
the report.
Corresponds to the JSON property dimensions
10302 10303 10304 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10302 def dimensions @dimensions end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#reportCompatibleFields.
Corresponds to the JSON property kind
10307 10308 10309 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10307 def kind @kind end |
#metrics ⇒ Array<Google::Apis::DfareportingV2_8::Metric>
Metrics which are compatible to be selected in the "metricNames" section of
the report.
Corresponds to the JSON property metrics
10313 10314 10315 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10313 def metrics @metrics end |
#pivoted_activity_metrics ⇒ Array<Google::Apis::DfareportingV2_8::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
10319 10320 10321 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10319 def pivoted_activity_metrics @pivoted_activity_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10326 10327 10328 10329 10330 10331 10332 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 10326 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 |