Class: Google::Apis::ToolresultsV1beta3::RoboScriptExecution

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

Overview

Execution stats for a user-provided Robo script.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RoboScriptExecution

Returns a new instance of RoboScriptExecution.



2426
2427
2428
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2426

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

Instance Attribute Details

#successful_actionsFixnum

The number of Robo script actions executed successfully. Corresponds to the JSON property successfulActions

Returns:

  • (Fixnum)


2419
2420
2421
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2419

def successful_actions
  @successful_actions
end

#total_actionsFixnum

The total number of actions in the Robo script. Corresponds to the JSON property totalActions

Returns:

  • (Fixnum)


2424
2425
2426
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2424

def total_actions
  @total_actions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2431
2432
2433
2434
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2431

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