class Google::Apis::DfareportingV3_3::OperatingSystemVersion
Contains information about a particular version of an operating system that can be targeted by ads.
Attributes
ID of this operating system version. Corresponds to the JSON property `id` @return [Fixnum]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#operatingSystemVersion”. Corresponds to the JSON property `kind` @return [String]
Major version (leftmost number) of this operating system version. Corresponds to the JSON property `majorVersion` @return [String]
Minor version (number after the first dot) of this operating system version. Corresponds to the JSON property `minorVersion` @return [String]
Name of this operating system version. Corresponds to the JSON property `name` @return [String]
Contains information about an operating system that can be targeted by ads. Corresponds to the JSON property `operatingSystem` @return [Google::Apis::DfareportingV3_3::OperatingSystem]
Public Class Methods
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 7454 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 7459 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