/**
* 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;} private: Test m_test; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws