Class: Google::Apis::DoubleclickbidmanagerV1::ListReportsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DoubleclickbidmanagerV1::ListReportsResponse
 
- 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
List reports response.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #reports  ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::Report> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Retrieved reports. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListReportsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListReportsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListReportsResponse
Returns a new instance of ListReportsResponse
| 235 236 237 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 235 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
doubleclickbidmanager#listReportsResponse".
Corresponds to the JSON property kind
| 228 229 230 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 228 def kind @kind end | 
#reports ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::Report>
Retrieved reports.
Corresponds to the JSON property reports
| 233 234 235 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 233 def reports @reports end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 240 241 242 243 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 240 def update!(**args) @kind = args[:kind] if args.key?(:kind) @reports = args[:reports] if args.key?(:reports) end |