Class: Google::Apis::DfareportingV3_0::ConversionsBatchInsertRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::ConversionsBatchInsertRequest
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/representations.rb 
Overview
Insert Conversions Request.
Instance Attribute Summary collapse
- 
  
    
      #conversions  ⇒ Array<Google::Apis::DfareportingV3_0::Conversion> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The set of conversions to insert.
 - 
  
    
      #encryption_info  ⇒ Google::Apis::DfareportingV3_0::EncryptionInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description of how user IDs are encrypted.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConversionsBatchInsertRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ConversionsBatchInsertRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ConversionsBatchInsertRequest
Returns a new instance of ConversionsBatchInsertRequest
      2570 2571 2572  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2570 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#conversions ⇒ Array<Google::Apis::DfareportingV3_0::Conversion>
The set of conversions to insert.
Corresponds to the JSON property conversions
      2557 2558 2559  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2557 def conversions @conversions end  | 
  
#encryption_info ⇒ Google::Apis::DfareportingV3_0::EncryptionInfo
A description of how user IDs are encrypted.
Corresponds to the JSON property encryptionInfo
      2562 2563 2564  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2562 def encryption_info @encryption_info end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#conversionsBatchInsertRequest".
Corresponds to the JSON property kind
      2568 2569 2570  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2568 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2575 2576 2577 2578 2579  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 2575 def update!(**args) @conversions = args[:conversions] if args.key?(:conversions) @encryption_info = args[:encryption_info] if args.key?(:encryption_info) @kind = args[:kind] if args.key?(:kind) end  |