Class: Google::Apis::TestingV1::RoboStartingIntent
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::TestingV1::RoboStartingIntent
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/google/apis/testing_v1/representations.rb 
Overview
Message for specifying the start activities to crawl
Instance Attribute Summary collapse
- 
  
    
      #launcher_activity  ⇒ Google::Apis::TestingV1::LauncherActivityIntent 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies an intent that starts the main launcher activity.
 - 
  
    
      #start_activity  ⇒ Google::Apis::TestingV1::StartActivityIntent 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A starting intent specified by an action, uri, and categories.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RoboStartingIntent 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of RoboStartingIntent.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RoboStartingIntent
Returns a new instance of RoboStartingIntent
      1676 1677 1678  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1676 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#launcher_activity ⇒ Google::Apis::TestingV1::LauncherActivityIntent
Specifies an intent that starts the main launcher activity.
Corresponds to the JSON property launcherActivity
      1669 1670 1671  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1669 def launcher_activity @launcher_activity end  | 
  
#start_activity ⇒ Google::Apis::TestingV1::StartActivityIntent
A starting intent specified by an action, uri, and categories.
Corresponds to the JSON property startActivity
      1674 1675 1676  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1674 def start_activity @start_activity end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1681 1682 1683 1684  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 1681 def update!(**args) @launcher_activity = args[:launcher_activity] if args.key?(:launcher_activity) @start_activity = args[:start_activity] if args.key?(:start_activity) end  |