Packages

case class ChecksSuiteResult(overallStatus: CheckSuiteStatus, checkSuiteDescription: String, checkResults: Seq[CheckResult], timestamp: Instant, checkTags: Map[String, String]) extends Product with Serializable

overallStatus

- Overall status of the CheckSuite. Dependent on the checks within the check suite

checkSuiteDescription

- Description of the suite of checks that was run

checkResults

- Sequence of CheckResult for every check in the CheckSuite

timestamp

- the time the checks were run

checkTags

- any tags associated with the CheckSuite

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ChecksSuiteResult
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ChecksSuiteResult(overallStatus: CheckSuiteStatus, checkSuiteDescription: String, checkResults: Seq[CheckResult], timestamp: Instant, checkTags: Map[String, String])

    overallStatus

    - Overall status of the CheckSuite. Dependent on the checks within the check suite

    checkSuiteDescription

    - Description of the suite of checks that was run

    checkResults

    - Sequence of CheckResult for every check in the CheckSuite

    timestamp

    - the time the checks were run

    checkTags

    - any tags associated with the CheckSuite

Value Members

  1. val checkResults: Seq[CheckResult]
  2. val checkSuiteDescription: String
  3. val checkTags: Map[String, String]
  4. val overallStatus: CheckSuiteStatus
  5. def prettyPrint: String
  6. val timestamp: Instant