Class: Google::Apis::DfareportingV3_1::OperatingSystemsListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_1::OperatingSystemsListResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_1/representations.rb 
Overview
Operating System List Response
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #operating_systems  ⇒ Array<Google::Apis::DfareportingV3_1::OperatingSystem> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Operating system collection.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OperatingSystemsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OperatingSystemsListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperatingSystemsListResponse
Returns a new instance of OperatingSystemsListResponse
      7758 7759 7760  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7758 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#operatingSystemsListResponse".
Corresponds to the JSON property kind
      7751 7752 7753  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7751 def kind @kind end  | 
  
#operating_systems ⇒ Array<Google::Apis::DfareportingV3_1::OperatingSystem>
Operating system collection.
Corresponds to the JSON property operatingSystems
      7756 7757 7758  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7756 def @operating_systems end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7763 7764 7765 7766  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7763 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operating_systems = args[:operating_systems] if args.key?(:operating_systems) end  |