Class: Google::Apis::DfareportingV3_0::OperatingSystemVersion
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::OperatingSystemVersion
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_0/classes.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb
Overview
Contains information about a particular version of an operating system that can be targeted by ads.
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ID of this operating system version. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #major_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Major version (leftmost number) of this operating system version. 
- 
  
    
      #minor_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Minor version (number after the first dot) of this operating system version. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Name of this operating system version. 
- 
  
    
      #operating_system  ⇒ Google::Apis::DfareportingV3_0::OperatingSystem 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains information about an operating system that can be targeted by ads. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OperatingSystemVersion 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OperatingSystemVersion. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperatingSystemVersion
Returns a new instance of OperatingSystemVersion
| 7561 7562 7563 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7561 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#id ⇒ Fixnum
ID of this operating system version.
Corresponds to the JSON property id
| 7533 7534 7535 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7533 def id @id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#operatingSystemVersion".
Corresponds to the JSON property kind
| 7539 7540 7541 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7539 def kind @kind end | 
#major_version ⇒ String
Major version (leftmost number) of this operating system version.
Corresponds to the JSON property majorVersion
| 7544 7545 7546 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7544 def major_version @major_version end | 
#minor_version ⇒ String
Minor version (number after the first dot) of this operating system version.
Corresponds to the JSON property minorVersion
| 7549 7550 7551 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7549 def minor_version @minor_version end | 
#name ⇒ String
Name of this operating system version.
Corresponds to the JSON property name
| 7554 7555 7556 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7554 def name @name end | 
#operating_system ⇒ Google::Apis::DfareportingV3_0::OperatingSystem
Contains information about an operating system that can be targeted by ads.
Corresponds to the JSON property operatingSystem
| 7559 7560 7561 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7559 def @operating_system end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 7566 7567 7568 7569 7570 7571 7572 7573 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7566 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @major_version = args[:major_version] if args.key?(:major_version) @minor_version = args[:minor_version] if args.key?(:minor_version) @name = args[:name] if args.key?(:name) @operating_system = args[:operating_system] if args.key?(:operating_system) end |