Class: Google::Apis::ToolresultsV1beta3::Specification
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::Specification
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
generated/google/apis/toolresults_v1beta3/representations.rb,
generated/google/apis/toolresults_v1beta3/representations.rb
Overview
The details about how to run the execution.
Instance Attribute Summary collapse
-
#android_test ⇒ Google::Apis::ToolresultsV1beta3::AndroidTest
An Android mobile test specification.
-
#ios_test ⇒ Google::Apis::ToolresultsV1beta3::IosTest
A iOS mobile test specification Corresponds to the JSON property
iosTest
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Specification
constructor
A new instance of Specification.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Specification
Returns a new instance of Specification.
2619 2620 2621 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2619 def initialize(**args) update!(**args) end |
Instance Attribute Details
#android_test ⇒ Google::Apis::ToolresultsV1beta3::AndroidTest
An Android mobile test specification.
Corresponds to the JSON property androidTest
2612 2613 2614 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2612 def android_test @android_test end |
#ios_test ⇒ Google::Apis::ToolresultsV1beta3::IosTest
A iOS mobile test specification
Corresponds to the JSON property iosTest
2617 2618 2619 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2617 def ios_test @ios_test end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2624 2625 2626 2627 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2624 def update!(**args) @android_test = args[:android_test] if args.key?(:android_test) @ios_test = args[:ios_test] if args.key?(:ios_test) end |