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/pinpoint/model/ListRecommenderConfigurationsResponse.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Pinpoint
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
ListRecommenderConfigurationsResponse::ListRecommenderConfigurationsResponse() :
|
|
m_itemHasBeenSet(false),
|
|
m_nextTokenHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
ListRecommenderConfigurationsResponse::ListRecommenderConfigurationsResponse(JsonView jsonValue) :
|
|
m_itemHasBeenSet(false),
|
|
m_nextTokenHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
ListRecommenderConfigurationsResponse& ListRecommenderConfigurationsResponse::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("Item"))
|
|
{
|
|
Array<JsonView> itemJsonList = jsonValue.GetArray("Item");
|
|
for(unsigned itemIndex = 0; itemIndex < itemJsonList.GetLength(); ++itemIndex)
|
|
{
|
|
m_item.push_back(itemJsonList[itemIndex].AsObject());
|
|
}
|
|
m_itemHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("NextToken"))
|
|
{
|
|
m_nextToken = jsonValue.GetString("NextToken");
|
|
|
|
m_nextTokenHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue ListRecommenderConfigurationsResponse::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_itemHasBeenSet)
|
|
{
|
|
Array<JsonValue> itemJsonList(m_item.size());
|
|
for(unsigned itemIndex = 0; itemIndex < itemJsonList.GetLength(); ++itemIndex)
|
|
{
|
|
itemJsonList[itemIndex].AsObject(m_item[itemIndex].Jsonize());
|
|
}
|
|
payload.WithArray("Item", std::move(itemJsonList));
|
|
|
|
}
|
|
|
|
if(m_nextTokenHasBeenSet)
|
|
{
|
|
payload.WithString("NextToken", m_nextToken);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace Pinpoint
|
|
} // namespace Aws
|