/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration information for the chat participant role.See
* Also:
AWS
* API Reference
Configuration information for the chat participant role.
*/ inline const ChatParticipantRoleConfig& GetChat() const{ return m_chat; } /** *Configuration information for the chat participant role.
*/ inline bool ChatHasBeenSet() const { return m_chatHasBeenSet; } /** *Configuration information for the chat participant role.
*/ inline void SetChat(const ChatParticipantRoleConfig& value) { m_chatHasBeenSet = true; m_chat = value; } /** *Configuration information for the chat participant role.
*/ inline void SetChat(ChatParticipantRoleConfig&& value) { m_chatHasBeenSet = true; m_chat = std::move(value); } /** *Configuration information for the chat participant role.
*/ inline UpdateParticipantRoleConfigChannelInfo& WithChat(const ChatParticipantRoleConfig& value) { SetChat(value); return *this;} /** *Configuration information for the chat participant role.
*/ inline UpdateParticipantRoleConfigChannelInfo& WithChat(ChatParticipantRoleConfig&& value) { SetChat(std::move(value)); return *this;} private: ChatParticipantRoleConfig m_chat; bool m_chatHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws