Class: Google::Apis::DfareportingV2_8::ConversionsBatchUpdateRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::ConversionsBatchUpdateRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb,
 generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Update Conversions Request.
Instance Attribute Summary collapse
- 
  
    
      #conversions  ⇒ Array<Google::Apis::DfareportingV2_8::Conversion> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The set of conversions to update. 
- 
  
    
      #encryption_info  ⇒ Google::Apis::DfareportingV2_8::EncryptionInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A description of how user IDs are encrypted. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConversionsBatchUpdateRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ConversionsBatchUpdateRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ConversionsBatchUpdateRequest
Returns a new instance of ConversionsBatchUpdateRequest
| 2599 2600 2601 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2599 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#conversions ⇒ Array<Google::Apis::DfareportingV2_8::Conversion>
The set of conversions to update.
Corresponds to the JSON property conversions
| 2586 2587 2588 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2586 def conversions @conversions end | 
#encryption_info ⇒ Google::Apis::DfareportingV2_8::EncryptionInfo
A description of how user IDs are encrypted.
Corresponds to the JSON property encryptionInfo
| 2591 2592 2593 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2591 def encryption_info @encryption_info end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#conversionsBatchUpdateRequest".
Corresponds to the JSON property kind
| 2597 2598 2599 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2597 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2604 2605 2606 2607 2608 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2604 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 |