class Google::Apis::DfareportingV3_5::PathReportCompatibleFields
Represents fields that are compatible to be selected for a report of type “ PATH”.
Attributes
Dimensions which are compatible to be selected in the “channelGroupings” section of the report. Corresponds to the JSON property `channelGroupings` @return [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` @return [Array<Google::Apis::DfareportingV3_5::Dimension>]
The kind of resource this is, in this case dfareporting# pathReportCompatibleFields. Corresponds to the JSON property `kind` @return [String]
Metrics which are compatible to be selected in the “metricNames” section of the report. Corresponds to the JSON property `metrics` @return [Array<Google::Apis::DfareportingV3_5::Metric>]
Dimensions which are compatible to be selected in the “pathFilters” section of the report. Corresponds to the JSON property `pathFilters` @return [Array<Google::Apis::DfareportingV3_5::Dimension>]
Public Class Methods
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 8321 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 8326 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