Source: test-interaction-dto.js

/**
 *
 */
class TestInteractionDTO {
  constructor (json) {
    this.json = json
  }

  /**
   * @type {string}
   */
  get actualValue () {
    return this.json.actualValue
  }

  /**
   * @type {any[]}
   */
  get assertions () {
    return this.json.assertions
  }

  /**
   * @type {string}
   */
  get expectedValue () {
    return this.json.expectedValue
  }

  /**
   * @type {string}
   */
  get status () {
    return this.json.status
  }

  /**
   * @returns {any}
   */
  toJSON () {
    return this.json
  }
}

export default TestInteractionDTO