Outcome Args
data class OutcomeArgs(val failureDetail: Output<FailureDetailArgs>? = null, val inconclusiveDetail: Output<InconclusiveDetailArgs>? = null, val skippedDetail: Output<SkippedDetailArgs>? = null, val successDetail: Output<SuccessDetailArgs>? = null, val summary: Output<OutcomeSummary>? = null) : ConvertibleToJava<OutcomeArgs>
Interprets a result so that humans and machines can act on it.
Constructors
Link copied to clipboard
constructor(failureDetail: Output<FailureDetailArgs>? = null, inconclusiveDetail: Output<InconclusiveDetailArgs>? = null, skippedDetail: Output<SkippedDetailArgs>? = null, successDetail: Output<SuccessDetailArgs>? = null, summary: Output<OutcomeSummary>? = null)
Properties
Link copied to clipboard
More information about a FAILURE outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not FAILURE. Optional
Link copied to clipboard
More information about an INCONCLUSIVE outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not INCONCLUSIVE. Optional
Link copied to clipboard
More information about a SKIPPED outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not SKIPPED. Optional
Link copied to clipboard
More information about a SUCCESS outcome. Returns INVALID_ARGUMENT if this field is set but the summary is not SUCCESS. Optional
Link copied to clipboard
The simplest way to interpret a result. Required