83 lines
1.8 KiB
C++
83 lines
1.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/iotsitewise/model/BatchPutAssetPropertyErrorEntry.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace IoTSiteWise
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
BatchPutAssetPropertyErrorEntry::BatchPutAssetPropertyErrorEntry() :
|
|
m_entryIdHasBeenSet(false),
|
|
m_errorsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
BatchPutAssetPropertyErrorEntry::BatchPutAssetPropertyErrorEntry(JsonView jsonValue) :
|
|
m_entryIdHasBeenSet(false),
|
|
m_errorsHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
BatchPutAssetPropertyErrorEntry& BatchPutAssetPropertyErrorEntry::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("entryId"))
|
|
{
|
|
m_entryId = jsonValue.GetString("entryId");
|
|
|
|
m_entryIdHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("errors"))
|
|
{
|
|
Array<JsonView> errorsJsonList = jsonValue.GetArray("errors");
|
|
for(unsigned errorsIndex = 0; errorsIndex < errorsJsonList.GetLength(); ++errorsIndex)
|
|
{
|
|
m_errors.push_back(errorsJsonList[errorsIndex].AsObject());
|
|
}
|
|
m_errorsHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue BatchPutAssetPropertyErrorEntry::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_entryIdHasBeenSet)
|
|
{
|
|
payload.WithString("entryId", m_entryId);
|
|
|
|
}
|
|
|
|
if(m_errorsHasBeenSet)
|
|
{
|
|
Array<JsonValue> errorsJsonList(m_errors.size());
|
|
for(unsigned errorsIndex = 0; errorsIndex < errorsJsonList.GetLength(); ++errorsIndex)
|
|
{
|
|
errorsJsonList[errorsIndex].AsObject(m_errors[errorsIndex].Jsonize());
|
|
}
|
|
payload.WithArray("errors", std::move(errorsJsonList));
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace IoTSiteWise
|
|
} // namespace Aws
|