Class: Google::Apis::ToolresultsV1beta3::IndividualOutcome
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::IndividualOutcome
- 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
-
#outcome_summary ⇒ String
Corresponds to the JSON property
outcomeSummary
. -
#step_id ⇒ String
Corresponds to the JSON property
stepId
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IndividualOutcome
constructor
A new instance of IndividualOutcome.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_summary ⇒ String
Corresponds to the JSON property outcomeSummary
1058 1059 1060 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1058 def outcome_summary @outcome_summary end |
#step_id ⇒ String
Corresponds to the JSON property stepId
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 |