class Google::Apis::DfareportingV3_3::Report::PathToConversionCriteria

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

Attributes

activity_filters[RW]

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

conversion_dimensions[RW]

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

custom_floodlight_variables[RW]

The list of custom floodlight variables the report should include. Corresponds to the JSON property `customFloodlightVariables` @return [Array<Google::Apis::DfareportingV3_3::SortedDimension>]

custom_rich_media_events[RW]

The list of custom rich media events to include. Corresponds to the JSON property `customRichMediaEvents` @return [Array<Google::Apis::DfareportingV3_3::DimensionValue>]

date_range[RW]

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

floodlight_config_id[RW]

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

metric_names[RW]

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

per_interaction_dimensions[RW]

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

report_properties[RW]

The properties of the report. Corresponds to the JSON property `reportProperties` @return [Google::Apis::DfareportingV3_3::Report::PathToConversionCriteria::ReportProperties]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 9995
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_3/classes.rb, line 10000
def update!(**args)
  @activity_filters = args[:activity_filters] if args.key?(:activity_filters)
  @conversion_dimensions = args[:conversion_dimensions] if args.key?(:conversion_dimensions)
  @custom_floodlight_variables = args[:custom_floodlight_variables] if args.key?(:custom_floodlight_variables)
  @custom_rich_media_events = args[:custom_rich_media_events] if args.key?(:custom_rich_media_events)
  @date_range = args[:date_range] if args.key?(:date_range)
  @floodlight_config_id = args[:floodlight_config_id] if args.key?(:floodlight_config_id)
  @metric_names = args[:metric_names] if args.key?(:metric_names)
  @per_interaction_dimensions = args[:per_interaction_dimensions] if args.key?(:per_interaction_dimensions)
  @report_properties = args[:report_properties] if args.key?(:report_properties)
end