class Google::Apis::TestingV1::StartActivityIntent

A starting intent specified by an action, uri, and categories.

Attributes

action[RW]

Action name. Required for START_ACTIVITY. Corresponds to the JSON property `action` @return [String]

categories[RW]

Intent categories to set on the intent. Corresponds to the JSON property `categories` @return [Array<String>]

uri[RW]

URI for the action. Corresponds to the JSON property `uri` @return [String]

Public Class Methods

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