167 lines
3.3 KiB
C++
167 lines
3.3 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/connectparticipant/model/Item.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace ConnectParticipant
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
Item::Item() :
|
|||
|
|
m_absoluteTimeHasBeenSet(false),
|
|||
|
|
m_contentHasBeenSet(false),
|
|||
|
|
m_contentTypeHasBeenSet(false),
|
|||
|
|
m_idHasBeenSet(false),
|
|||
|
|
m_type(ChatItemType::NOT_SET),
|
|||
|
|
m_typeHasBeenSet(false),
|
|||
|
|
m_participantIdHasBeenSet(false),
|
|||
|
|
m_displayNameHasBeenSet(false),
|
|||
|
|
m_participantRole(ParticipantRole::NOT_SET),
|
|||
|
|
m_participantRoleHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Item::Item(JsonView jsonValue) :
|
|||
|
|
m_absoluteTimeHasBeenSet(false),
|
|||
|
|
m_contentHasBeenSet(false),
|
|||
|
|
m_contentTypeHasBeenSet(false),
|
|||
|
|
m_idHasBeenSet(false),
|
|||
|
|
m_type(ChatItemType::NOT_SET),
|
|||
|
|
m_typeHasBeenSet(false),
|
|||
|
|
m_participantIdHasBeenSet(false),
|
|||
|
|
m_displayNameHasBeenSet(false),
|
|||
|
|
m_participantRole(ParticipantRole::NOT_SET),
|
|||
|
|
m_participantRoleHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Item& Item::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("AbsoluteTime"))
|
|||
|
|
{
|
|||
|
|
m_absoluteTime = jsonValue.GetString("AbsoluteTime");
|
|||
|
|
|
|||
|
|
m_absoluteTimeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("Content"))
|
|||
|
|
{
|
|||
|
|
m_content = jsonValue.GetString("Content");
|
|||
|
|
|
|||
|
|
m_contentHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("ContentType"))
|
|||
|
|
{
|
|||
|
|
m_contentType = jsonValue.GetString("ContentType");
|
|||
|
|
|
|||
|
|
m_contentTypeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("Id"))
|
|||
|
|
{
|
|||
|
|
m_id = jsonValue.GetString("Id");
|
|||
|
|
|
|||
|
|
m_idHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("Type"))
|
|||
|
|
{
|
|||
|
|
m_type = ChatItemTypeMapper::GetChatItemTypeForName(jsonValue.GetString("Type"));
|
|||
|
|
|
|||
|
|
m_typeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("ParticipantId"))
|
|||
|
|
{
|
|||
|
|
m_participantId = jsonValue.GetString("ParticipantId");
|
|||
|
|
|
|||
|
|
m_participantIdHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("DisplayName"))
|
|||
|
|
{
|
|||
|
|
m_displayName = jsonValue.GetString("DisplayName");
|
|||
|
|
|
|||
|
|
m_displayNameHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("ParticipantRole"))
|
|||
|
|
{
|
|||
|
|
m_participantRole = ParticipantRoleMapper::GetParticipantRoleForName(jsonValue.GetString("ParticipantRole"));
|
|||
|
|
|
|||
|
|
m_participantRoleHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue Item::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_absoluteTimeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("AbsoluteTime", m_absoluteTime);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_contentHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Content", m_content);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_contentTypeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("ContentType", m_contentType);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_idHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Id", m_id);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_typeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Type", ChatItemTypeMapper::GetNameForChatItemType(m_type));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_participantIdHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("ParticipantId", m_participantId);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_displayNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("DisplayName", m_displayName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_participantRoleHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("ParticipantRole", ParticipantRoleMapper::GetNameForParticipantRole(m_participantRole));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ConnectParticipant
|
|||
|
|
} // namespace Aws
|