110 lines
2.3 KiB
C++
110 lines
2.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/connect/model/UserPhoneConfig.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Connect
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
UserPhoneConfig::UserPhoneConfig() :
|
|
m_phoneType(PhoneType::NOT_SET),
|
|
m_phoneTypeHasBeenSet(false),
|
|
m_autoAccept(false),
|
|
m_autoAcceptHasBeenSet(false),
|
|
m_afterContactWorkTimeLimit(0),
|
|
m_afterContactWorkTimeLimitHasBeenSet(false),
|
|
m_deskPhoneNumberHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
UserPhoneConfig::UserPhoneConfig(JsonView jsonValue) :
|
|
m_phoneType(PhoneType::NOT_SET),
|
|
m_phoneTypeHasBeenSet(false),
|
|
m_autoAccept(false),
|
|
m_autoAcceptHasBeenSet(false),
|
|
m_afterContactWorkTimeLimit(0),
|
|
m_afterContactWorkTimeLimitHasBeenSet(false),
|
|
m_deskPhoneNumberHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
UserPhoneConfig& UserPhoneConfig::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("PhoneType"))
|
|
{
|
|
m_phoneType = PhoneTypeMapper::GetPhoneTypeForName(jsonValue.GetString("PhoneType"));
|
|
|
|
m_phoneTypeHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("AutoAccept"))
|
|
{
|
|
m_autoAccept = jsonValue.GetBool("AutoAccept");
|
|
|
|
m_autoAcceptHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("AfterContactWorkTimeLimit"))
|
|
{
|
|
m_afterContactWorkTimeLimit = jsonValue.GetInteger("AfterContactWorkTimeLimit");
|
|
|
|
m_afterContactWorkTimeLimitHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("DeskPhoneNumber"))
|
|
{
|
|
m_deskPhoneNumber = jsonValue.GetString("DeskPhoneNumber");
|
|
|
|
m_deskPhoneNumberHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue UserPhoneConfig::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_phoneTypeHasBeenSet)
|
|
{
|
|
payload.WithString("PhoneType", PhoneTypeMapper::GetNameForPhoneType(m_phoneType));
|
|
}
|
|
|
|
if(m_autoAcceptHasBeenSet)
|
|
{
|
|
payload.WithBool("AutoAccept", m_autoAccept);
|
|
|
|
}
|
|
|
|
if(m_afterContactWorkTimeLimitHasBeenSet)
|
|
{
|
|
payload.WithInteger("AfterContactWorkTimeLimit", m_afterContactWorkTimeLimit);
|
|
|
|
}
|
|
|
|
if(m_deskPhoneNumberHasBeenSet)
|
|
{
|
|
payload.WithString("DeskPhoneNumber", m_deskPhoneNumber);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace Connect
|
|
} // namespace Aws
|