121 lines
2.1 KiB
C++
121 lines
2.1 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/glacier/model/Grantee.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Glacier
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
Grantee::Grantee() :
|
|||
|
|
m_type(Type::NOT_SET),
|
|||
|
|
m_typeHasBeenSet(false),
|
|||
|
|
m_displayNameHasBeenSet(false),
|
|||
|
|
m_uRIHasBeenSet(false),
|
|||
|
|
m_iDHasBeenSet(false),
|
|||
|
|
m_emailAddressHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Grantee::Grantee(JsonView jsonValue) :
|
|||
|
|
m_type(Type::NOT_SET),
|
|||
|
|
m_typeHasBeenSet(false),
|
|||
|
|
m_displayNameHasBeenSet(false),
|
|||
|
|
m_uRIHasBeenSet(false),
|
|||
|
|
m_iDHasBeenSet(false),
|
|||
|
|
m_emailAddressHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Grantee& Grantee::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("Type"))
|
|||
|
|
{
|
|||
|
|
m_type = TypeMapper::GetTypeForName(jsonValue.GetString("Type"));
|
|||
|
|
|
|||
|
|
m_typeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("DisplayName"))
|
|||
|
|
{
|
|||
|
|
m_displayName = jsonValue.GetString("DisplayName");
|
|||
|
|
|
|||
|
|
m_displayNameHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("URI"))
|
|||
|
|
{
|
|||
|
|
m_uRI = jsonValue.GetString("URI");
|
|||
|
|
|
|||
|
|
m_uRIHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("ID"))
|
|||
|
|
{
|
|||
|
|
m_iD = jsonValue.GetString("ID");
|
|||
|
|
|
|||
|
|
m_iDHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("EmailAddress"))
|
|||
|
|
{
|
|||
|
|
m_emailAddress = jsonValue.GetString("EmailAddress");
|
|||
|
|
|
|||
|
|
m_emailAddressHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue Grantee::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_typeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Type", TypeMapper::GetNameForType(m_type));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_displayNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("DisplayName", m_displayName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_uRIHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("URI", m_uRI);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_iDHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("ID", m_iD);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_emailAddressHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("EmailAddress", m_emailAddress);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Glacier
|
|||
|
|
} // namespace Aws
|