Class: Google::Apis::DfareportingV2_3::OperatingSystemVersion
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_3::OperatingSystemVersion
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/representations.rb
Overview
Contains information about a particular version of an operating system that can be targeted by ads.
Instance Attribute Summary collapse
-
#id ⇒ String
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::DfareportingV2_3::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
6747 6748 6749 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6747 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
ID of this operating system version.
Corresponds to the JSON property id
6719 6720 6721 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6719 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
6725 6726 6727 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6725 def kind @kind end |
#major_version ⇒ String
Major version (leftmost number) of this operating system version.
Corresponds to the JSON property majorVersion
6730 6731 6732 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6730 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
6735 6736 6737 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6735 def minor_version @minor_version end |
#name ⇒ String
Name of this operating system version.
Corresponds to the JSON property name
6740 6741 6742 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6740 def name @name end |
#operating_system ⇒ Google::Apis::DfareportingV2_3::OperatingSystem
Contains information about an operating system that can be targeted by ads.
Corresponds to the JSON property operatingSystem
6745 6746 6747 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6745 def @operating_system end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6752 6753 6754 6755 6756 6757 6758 6759 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6752 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 |