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
      239 240 241  | 
    
      # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 239 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
      232 233 234  | 
    
      # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 232 def kind @kind end  | 
  
#reports ⇒ Array<Google::Apis::DoubleclickbidmanagerV1::Report>
Retrieved reports.
Corresponds to the JSON property reports
      237 238 239  | 
    
      # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 237 def reports @reports end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      244 245 246 247  | 
    
      # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 244 def update!(**args) @kind = args[:kind] if args.key?(:kind) @reports = args[:reports] if args.key?(:reports) end  |