class Google::Apis::TestingV1::AndroidRuntimeConfiguration

Android configuration that can be selected at the time a test is run.

Attributes

locales[RW]

The set of available locales. Corresponds to the JSON property `locales` @return [Array<Google::Apis::TestingV1::Locale>]

orientations[RW]

The set of available orientations. Corresponds to the JSON property `orientations` @return [Array<Google::Apis::TestingV1::Orientation>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 482
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 487
def update!(**args)
  @locales = args[:locales] if args.key?(:locales)
  @orientations = args[:orientations] if args.key?(:orientations)
end