Class: Google::Apis::DoubleclickbidmanagerV1::ReportKey
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DoubleclickbidmanagerV1::ReportKey
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/doubleclickbidmanager_v1/classes.rb,
 generated/google/apis/doubleclickbidmanager_v1/representations.rb,
 generated/google/apis/doubleclickbidmanager_v1/representations.rb
Overview
Key used to identify a report.
Instance Attribute Summary collapse
- 
  
    
      #query_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Query ID. 
- 
  
    
      #report_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Report ID. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ReportKey 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ReportKey. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReportKey
Returns a new instance of ReportKey
| 546 547 548 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 546 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#query_id ⇒ Fixnum
Query ID.
Corresponds to the JSON property queryId
| 539 540 541 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 539 def query_id @query_id end | 
#report_id ⇒ Fixnum
Report ID.
Corresponds to the JSON property reportId
| 544 545 546 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 544 def report_id @report_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 551 552 553 554 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 551 def update!(**args) @query_id = args[:query_id] if args.key?(:query_id) @report_id = args[:report_id] if args.key?(:report_id) end |