Class: Google::Apis::ToolresultsV1beta3::Outcome
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::Outcome
 
 
- 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
Interprets a result so that humans and machines can act on it.
Instance Attribute Summary collapse
- 
  
    
      #failure_detail  ⇒ Google::Apis::ToolresultsV1beta3::FailureDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
More information about a FAILURE outcome.
 - 
  
    
      #inconclusive_detail  ⇒ Google::Apis::ToolresultsV1beta3::InconclusiveDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
More information about an INCONCLUSIVE outcome.
 - 
  
    
      #skipped_detail  ⇒ Google::Apis::ToolresultsV1beta3::SkippedDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
More information about a SKIPPED outcome.
 - 
  
    
      #success_detail  ⇒ Google::Apis::ToolresultsV1beta3::SuccessDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
More information about a SUCCESS outcome.
 - 
  
    
      #summary  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The simplest way to interpret a result.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Outcome 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Outcome.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Outcome
Returns a new instance of Outcome
      1294 1295 1296  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1294 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#failure_detail ⇒ Google::Apis::ToolresultsV1beta3::FailureDetail
More information about a FAILURE outcome.
Returns INVALID_ARGUMENT if this field is set but the summary is not FAILURE.
Optional
Corresponds to the JSON property failureDetail
      1264 1265 1266  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1264 def failure_detail @failure_detail end  | 
  
#inconclusive_detail ⇒ Google::Apis::ToolresultsV1beta3::InconclusiveDetail
More information about an INCONCLUSIVE outcome.
Returns INVALID_ARGUMENT if this field is set but the summary is not
INCONCLUSIVE.
Optional
Corresponds to the JSON property inconclusiveDetail
      1272 1273 1274  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1272 def inconclusive_detail @inconclusive_detail end  | 
  
#skipped_detail ⇒ Google::Apis::ToolresultsV1beta3::SkippedDetail
More information about a SKIPPED outcome.
Returns INVALID_ARGUMENT if this field is set but the summary is not SKIPPED.
Optional
Corresponds to the JSON property skippedDetail
      1279 1280 1281  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1279 def skipped_detail @skipped_detail end  | 
  
#success_detail ⇒ Google::Apis::ToolresultsV1beta3::SuccessDetail
More information about a SUCCESS outcome.
Returns INVALID_ARGUMENT if this field is set but the summary is not SUCCESS.
Optional
Corresponds to the JSON property successDetail
      1286 1287 1288  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1286 def success_detail @success_detail end  | 
  
#summary ⇒ String
The simplest way to interpret a result.
Required
Corresponds to the JSON property summary
      1292 1293 1294  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1292 def summary @summary end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1299 1300 1301 1302 1303 1304 1305  | 
    
      # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1299 def update!(**args) @failure_detail = args[:failure_detail] if args.key?(:failure_detail) @inconclusive_detail = args[:inconclusive_detail] if args.key?(:inconclusive_detail) @skipped_detail = args[:skipped_detail] if args.key?(:skipped_detail) @success_detail = args[:success_detail] if args.key?(:success_detail) @summary = args[:summary] if args.key?(:summary) end  |