Class: Google::Apis::TestingV1::IosVersion

Inherits:
Object
  • Object
show all
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 iOS version

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ IosVersion

Returns a new instance of IosVersion



1299
1300
1301
# File 'generated/google/apis/testing_v1/classes.rb', line 1299

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idString

Output only. An opaque id for this iOS version. Use this id to invoke the TestExecutionService. Corresponds to the JSON property id

Returns:

  • (String)


1279
1280
1281
# File 'generated/google/apis/testing_v1/classes.rb', line 1279

def id
  @id
end

#major_versionFixnum

Output only. An integer representing the major iOS version. Examples: "8", "9" Corresponds to the JSON property majorVersion

Returns:

  • (Fixnum)


1285
1286
1287
# File 'generated/google/apis/testing_v1/classes.rb', line 1285

def major_version
  @major_version
end

#minor_versionFixnum

Output only. An integer representing the minor iOS version. Examples: "1", "2" Corresponds to the JSON property minorVersion

Returns:

  • (Fixnum)


1291
1292
1293
# File 'generated/google/apis/testing_v1/classes.rb', line 1291

def minor_version
  @minor_version
end

#tagsArray<String>

Output only. Tags for this dimension. Examples: "default", "preview", "deprecated" Corresponds to the JSON property tags

Returns:

  • (Array<String>)


1297
1298
1299
# File 'generated/google/apis/testing_v1/classes.rb', line 1297

def tags
  @tags
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1304
1305
1306
1307
1308
1309
# File 'generated/google/apis/testing_v1/classes.rb', line 1304

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @major_version = args[:major_version] if args.key?(:major_version)
  @minor_version = args[:minor_version] if args.key?(:minor_version)
  @tags = args[:tags] if args.key?(:tags)
end