Class: Google::Apis::ToolresultsV1beta3::IndividualOutcome

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

Step Id and outcome of each individual step that was run as a group with other steps with the same configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ IndividualOutcome

Returns a new instance of IndividualOutcome



1065
1066
1067
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1065

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

Instance Attribute Details

#outcome_summaryString

Corresponds to the JSON property outcomeSummary

Returns:

  • (String)


1058
1059
1060
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1058

def outcome_summary
  @outcome_summary
end

#step_idString

Corresponds to the JSON property stepId

Returns:

  • (String)


1063
1064
1065
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1063

def step_id
  @step_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1070
1071
1072
1073
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1070

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