class Google::Apis::DfareportingV2_1::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 [String]
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::DfareportingV2_1::OperatingSystem]
Public Class Methods
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 6672 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 6677 def update!(**args) @id = args[:id] unless args[:id].nil? @kind = args[:kind] unless args[:kind].nil? @major_version = args[:major_version] unless args[:major_version].nil? @minor_version = args[:minor_version] unless args[:minor_version].nil? @name = args[:name] unless args[:name].nil? @operating_system = args[:operating_system] unless args[:operating_system].nil? end