class Google::Apis::TestingV1::XcodeVersion

An Xcode version that an iOS version is compatible with.

Attributes

tags[RW]

Tags for this Xcode version. Example: “default”. Corresponds to the JSON property `tags` @return [Array<String>]

version[RW]

The id for this version. Example: “9.2”. Corresponds to the JSON property `version` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 2631
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/testing_v1/classes.rb, line 2636
def update!(**args)
  @tags = args[:tags] if args.key?(:tags)
  @version = args[:version] if args.key?(:version)
end