class Google::Apis::TestingV1::RoboStartingIntent

Message for specifying the start activities to crawl.

Attributes

launcher_activity[RW]

Specifies an intent that starts the main launcher activity. Corresponds to the JSON property `launcherActivity` @return [Google::Apis::TestingV1::LauncherActivityIntent]

start_activity[RW]

A starting intent specified by an action, uri, and categories. Corresponds to the JSON property `startActivity` @return [Google::Apis::TestingV1::StartActivityIntent]

timeout[RW]

Timeout in seconds for each intent. Corresponds to the JSON property `timeout` @return [String]

Public Class Methods

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