/**
* 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 project request.See Also:
AWS
* API Reference
The project to get information about.
*/ inline const Project& GetProject() const{ return m_project; } /** *The project to get information about.
*/ inline void SetProject(const Project& value) { m_project = value; } /** *The project to get information about.
*/ inline void SetProject(Project&& value) { m_project = std::move(value); } /** *The project to get information about.
*/ inline GetProjectResult& WithProject(const Project& value) { SetProject(value); return *this;} /** *The project to get information about.
*/ inline GetProjectResult& WithProject(Project&& value) { SetProject(std::move(value)); return *this;} private: Project m_project; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws