class Google::Apis::DfareportingV3_5::PathReportCompatibleFields

Represents fields that are compatible to be selected for a report of type “ PATH”.

Attributes

channel_groupings[RW]

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[RW]

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>]

kind[RW]

The kind of resource this is, in this case dfareporting# pathReportCompatibleFields. Corresponds to the JSON property `kind` @return [String]

metrics[RW]

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>]

path_filters[RW]

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

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 8321
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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