Class: Google::Apis::TestingV1::XcodeVersion
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::XcodeVersion
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/google/apis/testing_v1/representations.rb
Overview
An Xcode version that an iOS version is compatible with.
Instance Attribute Summary collapse
-
#tags ⇒ Array<String>
Output only.
-
#version ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XcodeVersion
constructor
A new instance of XcodeVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ XcodeVersion
Returns a new instance of XcodeVersion
2339 2340 2341 |
# File 'generated/google/apis/testing_v1/classes.rb', line 2339 def initialize(**args) update!(**args) end |
Instance Attribute Details
#tags ⇒ Array<String>
Output only. Tags for this Xcode version.
Examples: "default"
Corresponds to the JSON property tags
2331 2332 2333 |
# File 'generated/google/apis/testing_v1/classes.rb', line 2331 def @tags end |
#version ⇒ String
Output only. The id for this version.
Example: "9.2"
Corresponds to the JSON property version
2337 2338 2339 |
# File 'generated/google/apis/testing_v1/classes.rb', line 2337 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2344 2345 2346 2347 |
# File 'generated/google/apis/testing_v1/classes.rb', line 2344 def update!(**args) @tags = args[:tags] if args.key?(:tags) @version = args[:version] if args.key?(:version) end |