Class: Google::Apis::DfareportingV4::PathReportCompatibleFields
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::PathReportCompatibleFields
- 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
Represents fields that are compatible to be selected for a report of type " PATH".
Instance Attribute Summary collapse
-
#channel_groupings ⇒ Array<Google::Apis::DfareportingV4::Dimension>
Dimensions which are compatible to be selected in the "channelGroupings" section of the report.
-
#dimensions ⇒ Array<Google::Apis::DfareportingV4::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# pathReportCompatibleFields.
-
#metrics ⇒ Array<Google::Apis::DfareportingV4::Metric>
Metrics which are compatible to be selected in the "metricNames" section of the report.
-
#path_filters ⇒ Array<Google::Apis::DfareportingV4::Dimension>
Dimensions which are compatible to be selected in the "pathFilters" section of the report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PathReportCompatibleFields
constructor
A new instance of PathReportCompatibleFields.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PathReportCompatibleFields
Returns a new instance of PathReportCompatibleFields.
8875 8876 8877 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8875 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel_groupings ⇒ Array<Google::Apis::DfareportingV4::Dimension>
Dimensions which are compatible to be selected in the "channelGroupings"
section of the report.
Corresponds to the JSON property channelGroupings
8849 8850 8851 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8849 def channel_groupings @channel_groupings end |
#dimensions ⇒ Array<Google::Apis::DfareportingV4::Dimension>
Dimensions which are compatible to be selected in the "dimensions" section of
the report.
Corresponds to the JSON property dimensions
8855 8856 8857 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8855 def dimensions @dimensions end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#
pathReportCompatibleFields.
Corresponds to the JSON property kind
8861 8862 8863 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8861 def kind @kind end |
#metrics ⇒ Array<Google::Apis::DfareportingV4::Metric>
Metrics which are compatible to be selected in the "metricNames" section of
the report.
Corresponds to the JSON property metrics
8867 8868 8869 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8867 def metrics @metrics end |
#path_filters ⇒ Array<Google::Apis::DfareportingV4::Dimension>
Dimensions which are compatible to be selected in the "pathFilters" section of
the report.
Corresponds to the JSON property pathFilters
8873 8874 8875 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8873 def path_filters @path_filters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8880 8881 8882 8883 8884 8885 8886 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8880 def update!(**args) @channel_groupings = args[:channel_groupings] if args.key?(:channel_groupings) @dimensions = args[:dimensions] if args.key?(:dimensions) @kind = args[:kind] if args.key?(:kind) @metrics = args[:metrics] if args.key?(:metrics) @path_filters = args[:path_filters] if args.key?(:path_filters) end |