/**
* 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;} 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 GetProjectResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetProjectResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetProjectResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Project m_project; Aws::String m_requestId; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws