/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Result structure used for requests to updated project configuration.
* See Also:
AWS
* API Reference
Detailed information about the updated AWS Mobile Hub project.
*/ inline const ProjectDetails& GetDetails() const{ return m_details; } /** *Detailed information about the updated AWS Mobile Hub project.
*/ inline void SetDetails(const ProjectDetails& value) { m_details = value; } /** *Detailed information about the updated AWS Mobile Hub project.
*/ inline void SetDetails(ProjectDetails&& value) { m_details = std::move(value); } /** *Detailed information about the updated AWS Mobile Hub project.
*/ inline UpdateProjectResult& WithDetails(const ProjectDetails& value) { SetDetails(value); return *this;} /** *Detailed information about the updated AWS Mobile Hub project.
*/ inline UpdateProjectResult& WithDetails(ProjectDetails&& value) { SetDetails(std::move(value)); return *this;} private: ProjectDetails m_details; }; } // namespace Model } // namespace Mobile } // namespace Aws