class Google::Apis::TestingV1::IosDevice
A single iOS device.
Attributes
Required. The id of the iOS device to be used. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property `iosModelId` @return [String]
Required. The id of the iOS major software version to be used. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property `iosVersionId` @return [String]
Required. The locale the test device used for testing. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property `locale` @return [String]
Required. How the device is oriented during the test. Use the TestEnvironmentDiscoveryService to get supported options. Corresponds to the JSON property `orientation` @return [String]
Public Class Methods
# File lib/google/apis/testing_v1/classes.rb, line 1181 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/testing_v1/classes.rb, line 1186 def update!(**args) @ios_model_id = args[:ios_model_id] if args.key?(:ios_model_id) @ios_version_id = args[:ios_version_id] if args.key?(:ios_version_id) @locale = args[:locale] if args.key?(:locale) @orientation = args[:orientation] if args.key?(:orientation) end