class Google::Apis::DfareportingV3_4::PathToConversionReportCompatibleFields
Represents fields that are compatible to be selected for a report of type “ PATH_TO_CONVERSION”.
Attributes
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::DfareportingV3_4::Dimension>]
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::DfareportingV3_4::Dimension>]
The kind of resource this is, in this case dfareporting# pathToConversionReportCompatibleFields. 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_4::Metric>]
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::DfareportingV3_4::Dimension>]
Public Class Methods
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 8772 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 8777 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