/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Chime { namespace Model { class AWS_CHIME_API CreateRoomResult { public: CreateRoomResult(); CreateRoomResult(const Aws::AmazonWebServiceResult& result); CreateRoomResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The room details.

*/ inline const Room& GetRoom() const{ return m_room; } /** *

The room details.

*/ inline void SetRoom(const Room& value) { m_room = value; } /** *

The room details.

*/ inline void SetRoom(Room&& value) { m_room = std::move(value); } /** *

The room details.

*/ inline CreateRoomResult& WithRoom(const Room& value) { SetRoom(value); return *this;} /** *

The room details.

*/ inline CreateRoomResult& WithRoom(Room&& value) { SetRoom(std::move(value)); return *this;} private: Room m_room; }; } // namespace Model } // namespace Chime } // namespace Aws