Class: Google::Apis::ToolresultsV1beta3::Specification
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::Specification
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/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.
      2659 2660 2661  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2659 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
      2652 2653 2654  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2652 def android_test @android_test end  | 
  
#ios_test ⇒ Google::Apis::ToolresultsV1beta3::IosTest
A iOS mobile test specification
Corresponds to the JSON property iosTest
      2657 2658 2659  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2657 def ios_test @ios_test end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2664 2665 2666 2667  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2664 def update!(**args) @android_test = args[:android_test] if args.key?(:android_test) @ios_test = args[:ios_test] if args.key?(:ios_test) end  |