Class: Google::Apis::DfareportingV3_1::PathToConversionReportCompatibleFields
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_1::PathToConversionReportCompatibleFields
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_1/representations.rb 
Overview
Represents fields that are compatible to be selected for a report of type " PATH_TO_CONVERSION".
Instance Attribute Summary collapse
- 
  
    
      #conversion_dimensions  ⇒ Array<Google::Apis::DfareportingV3_1::Dimension> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Conversion dimensions which are compatible to be selected in the " conversionDimensions" section of the report.
 - 
  
    
      #custom_floodlight_variables  ⇒ Array<Google::Apis::DfareportingV3_1::Dimension> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Custom floodlight variables which are compatible to be selected in the " customFloodlightVariables" section of the report.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of resource this is, in this case dfareporting# pathToConversionReportCompatibleFields.
 - 
  
    
      #metrics  ⇒ Array<Google::Apis::DfareportingV3_1::Metric> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metrics which are compatible to be selected in the "metricNames" section of the report.
 - 
  
    
      #per_interaction_dimensions  ⇒ Array<Google::Apis::DfareportingV3_1::Dimension> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Per-interaction dimensions which are compatible to be selected in the " perInteractionDimensions" section of the report.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PathToConversionReportCompatibleFields 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PathToConversionReportCompatibleFields.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PathToConversionReportCompatibleFields
Returns a new instance of PathToConversionReportCompatibleFields
      8201 8202 8203  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 8201 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#conversion_dimensions ⇒ Array<Google::Apis::DfareportingV3_1::Dimension>
Conversion dimensions which are compatible to be selected in the "
conversionDimensions" section of the report.
Corresponds to the JSON property conversionDimensions
      8175 8176 8177  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 8175 def conversion_dimensions @conversion_dimensions end  | 
  
#custom_floodlight_variables ⇒ Array<Google::Apis::DfareportingV3_1::Dimension>
Custom floodlight variables which are compatible to be selected in the "
customFloodlightVariables" section of the report.
Corresponds to the JSON property customFloodlightVariables
      8181 8182 8183  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 8181 def custom_floodlight_variables @custom_floodlight_variables end  | 
  
#kind ⇒ String
The kind of resource this is, in this case dfareporting#
pathToConversionReportCompatibleFields.
Corresponds to the JSON property kind
      8187 8188 8189  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 8187 def kind @kind end  | 
  
#metrics ⇒ Array<Google::Apis::DfareportingV3_1::Metric>
Metrics which are compatible to be selected in the "metricNames" section of
the report.
Corresponds to the JSON property metrics
      8193 8194 8195  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 8193 def metrics @metrics end  | 
  
#per_interaction_dimensions ⇒ Array<Google::Apis::DfareportingV3_1::Dimension>
Per-interaction dimensions which are compatible to be selected in the "
perInteractionDimensions" section of the report.
Corresponds to the JSON property perInteractionDimensions
      8199 8200 8201  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 8199 def per_interaction_dimensions @per_interaction_dimensions end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8206 8207 8208 8209 8210 8211 8212  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 8206 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  |