Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestDevice
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestDevice
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappdistribution_v1alpha/classes.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb
Overview
A device on which automated tests can be run.
Instance Attribute Summary collapse
-
#locale ⇒ String
Optional.
-
#model ⇒ String
Required.
-
#orientation ⇒ String
Optional.
-
#version ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaTestDevice
constructor
A new instance of GoogleFirebaseAppdistroV1alphaTestDevice.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaTestDevice
Returns a new instance of GoogleFirebaseAppdistroV1alphaTestDevice.
942 943 944 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 942 def initialize(**args) update!(**args) end |
Instance Attribute Details
#locale ⇒ String
Optional. The locale of the device (e.g. "en_US" for US English) during the
test.
Corresponds to the JSON property locale
925 926 927 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 925 def locale @locale end |
#model ⇒ String
Required. The device model.
Corresponds to the JSON property model
930 931 932 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 930 def model @model end |
#orientation ⇒ String
Optional. The orientation of the device during the test.
Corresponds to the JSON property orientation
935 936 937 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 935 def orientation @orientation end |
#version ⇒ String
Required. The version of the device (API level on Android).
Corresponds to the JSON property version
940 941 942 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 940 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
947 948 949 950 951 952 |
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 947 def update!(**args) @locale = args[:locale] if args.key?(:locale) @model = args[:model] if args.key?(:model) @orientation = args[:orientation] if args.key?(:orientation) @version = args[:version] if args.key?(:version) end |