Class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceAction

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/firebaseappdistribution_v1alpha/classes.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb,
lib/google/apis/firebaseappdistribution_v1alpha/representations.rb

Overview

A high level action taken by the AI on the device, potentially involving multiple taps, text entries, waits, etc.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseAppdistroV1alphaDeviceAction

Returns a new instance of GoogleFirebaseAppdistroV1alphaDeviceAction.



484
485
486
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 484

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

Output only. A short description of the high level action taken by the AI agent. Corresponds to the JSON property description

Returns:

  • (String)


476
477
478
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 476

def description
  @description
end

#device_interactionsArray<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceInteraction>

Output only. The interactions made with the device as part of this higher level action taken by the agent, such as taps, text entries, waits, etc. Corresponds to the JSON property deviceInteractions



482
483
484
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 482

def device_interactions
  @device_interactions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



489
490
491
492
# File 'lib/google/apis/firebaseappdistribution_v1alpha/classes.rb', line 489

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @device_interactions = args[:device_interactions] if args.key?(:device_interactions)
end