class Google::Apis::DfareportingV3_4::Report::PathAttributionCriteria

The report criteria for a report of type “PATH_ATTRIBUTION”.

Attributes

activity_filters[RW]

The list of 'dfa:activity' values to filter on. Corresponds to the JSON property `activityFilters` @return [Array<Google::Apis::DfareportingV3_4::DimensionValue>]

custom_channel_grouping[RW]

Represents a DfaReporting channel grouping. Corresponds to the JSON property `customChannelGrouping` @return [Google::Apis::DfareportingV3_4::ChannelGrouping]

date_range[RW]

Represents a date range. Corresponds to the JSON property `dateRange` @return [Google::Apis::DfareportingV3_4::DateRange]

dimensions[RW]

The list of dimensions the report should include. Corresponds to the JSON property `dimensions` @return [Array<Google::Apis::DfareportingV3_4::SortedDimension>]

floodlight_config_id[RW]

Represents a DimensionValue resource. Corresponds to the JSON property `floodlightConfigId` @return [Google::Apis::DfareportingV3_4::DimensionValue]

metric_names[RW]

The list of names of metrics the report should include. Corresponds to the JSON property `metricNames` @return [Array<String>]

path_filters[RW]

Path Filters. Corresponds to the JSON property `pathFilters` @return [Array<Google::Apis::DfareportingV3_4::PathFilter>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 10809
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_4/classes.rb, line 10814
def update!(**args)
  @activity_filters = args[:activity_filters] if args.key?(:activity_filters)
  @custom_channel_grouping = args[:custom_channel_grouping] if args.key?(:custom_channel_grouping)
  @date_range = args[:date_range] if args.key?(:date_range)
  @dimensions = args[:dimensions] if args.key?(:dimensions)
  @floodlight_config_id = args[:floodlight_config_id] if args.key?(:floodlight_config_id)
  @metric_names = args[:metric_names] if args.key?(:metric_names)
  @path_filters = args[:path_filters] if args.key?(:path_filters)
end