/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the result of a get test request.See Also:
AWS
* API Reference
A test condition that is evaluated.
*/ inline const Test& GetTest() const{ return m_test; } /** *A test condition that is evaluated.
*/ inline void SetTest(const Test& value) { m_test = value; } /** *A test condition that is evaluated.
*/ inline void SetTest(Test&& value) { m_test = std::move(value); } /** *A test condition that is evaluated.
*/ inline GetTestResult& WithTest(const Test& value) { SetTest(value); return *this;} /** *A test condition that is evaluated.
*/ inline GetTestResult& WithTest(Test&& value) { SetTest(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetTestResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetTestResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetTestResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Test m_test; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws