class Google::Apis::DfareportingV2_3::PathToConversionReportCompatibleFields

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

Attributes

conversion_dimensions[RW]

Conversion dimensions which are compatible to be selected in the “ conversionDimensions” section of the report. Corresponds to the JSON property `conversionDimensions` @return [Array<Google::Apis::DfareportingV2_3::Dimension>]

custom_floodlight_variables[RW]

Custom floodlight variables which are compatible to be selected in the “ customFloodlightVariables” section of the report. Corresponds to the JSON property `customFloodlightVariables` @return [Array<Google::Apis::DfareportingV2_3::Dimension>]

kind[RW]

The kind of resource this is, in this case dfareporting# pathToConversionReportCompatibleFields. 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::DfareportingV2_3::Metric>]

per_interaction_dimensions[RW]

Per-interaction dimensions which are compatible to be selected in the “ perInteractionDimensions” section of the report. Corresponds to the JSON property `perInteractionDimensions` @return [Array<Google::Apis::DfareportingV2_3::Dimension>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/dfareporting_v2_3/classes.rb, line 7242
def update!(**args)
  @conversion_dimensions = args[:conversion_dimensions] if args.key?(:conversion_dimensions)
  @custom_floodlight_variables = args[:custom_floodlight_variables] if args.key?(:custom_floodlight_variables)
  @kind = args[:kind] if args.key?(:kind)
  @metrics = args[:metrics] if args.key?(:metrics)
  @per_interaction_dimensions = args[:per_interaction_dimensions] if args.key?(:per_interaction_dimensions)
end