/**
* 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 suite request.See Also:
AWS
* API Reference
A collection of one or more tests.
*/ inline const Suite& GetSuite() const{ return m_suite; } /** *A collection of one or more tests.
*/ inline void SetSuite(const Suite& value) { m_suite = value; } /** *A collection of one or more tests.
*/ inline void SetSuite(Suite&& value) { m_suite = std::move(value); } /** *A collection of one or more tests.
*/ inline GetSuiteResult& WithSuite(const Suite& value) { SetSuite(value); return *this;} /** *A collection of one or more tests.
*/ inline GetSuiteResult& WithSuite(Suite&& value) { SetSuite(std::move(value)); return *this;} private: Suite m_suite; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws