Class: Google::Apis::DfareportingV2_8::BrowsersListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV2_8::BrowsersListResponse
 
- 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
Browser List Response
Instance Attribute Summary collapse
- 
  
    
      #browsers  ⇒ Array<Google::Apis::DfareportingV2_8::Browser> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Browser collection. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BrowsersListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BrowsersListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BrowsersListResponse
Returns a new instance of BrowsersListResponse
| 1442 1443 1444 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 1442 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#browsers ⇒ Array<Google::Apis::DfareportingV2_8::Browser>
Browser collection.
Corresponds to the JSON property browsers
| 1434 1435 1436 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 1434 def browsers @browsers end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#browsersListResponse".
Corresponds to the JSON property kind
| 1440 1441 1442 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 1440 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1447 1448 1449 1450 | # File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 1447 def update!(**args) @browsers = args[:browsers] if args.key?(:browsers) @kind = args[:kind] if args.key?(:kind) end |