/** * 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 GetBotResult { public: GetBotResult(); GetBotResult(const Aws::AmazonWebServiceResult& result); GetBotResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The chat bot details.

*/ inline const Bot& GetBot() const{ return m_bot; } /** *

The chat bot details.

*/ inline void SetBot(const Bot& value) { m_bot = value; } /** *

The chat bot details.

*/ inline void SetBot(Bot&& value) { m_bot = std::move(value); } /** *

The chat bot details.

*/ inline GetBotResult& WithBot(const Bot& value) { SetBot(value); return *this;} /** *

The chat bot details.

*/ inline GetBotResult& WithBot(Bot&& value) { SetBot(std::move(value)); return *this;} private: Bot m_bot; }; } // namespace Model } // namespace Chime } // namespace Aws