class TestCaseModel { /** * @param {object} response */ function TestCaseModel(response) { this.response = response; } /** * @return {string} testCase */ function toString() { return "Test Case: " + this.response.message.text; } }