/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace Pinpoint { namespace Model { EndpointsResponse::EndpointsResponse() : m_itemHasBeenSet(false) { } EndpointsResponse::EndpointsResponse(JsonView jsonValue) : m_itemHasBeenSet(false) { *this = jsonValue; } EndpointsResponse& EndpointsResponse::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Item")) { Aws::Utils::Array itemJsonList = jsonValue.GetArray("Item"); for(unsigned itemIndex = 0; itemIndex < itemJsonList.GetLength(); ++itemIndex) { m_item.push_back(itemJsonList[itemIndex].AsObject()); } m_itemHasBeenSet = true; } return *this; } JsonValue EndpointsResponse::Jsonize() const { JsonValue payload; if(m_itemHasBeenSet) { Aws::Utils::Array 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)); } return payload; } } // namespace Model } // namespace Pinpoint } // namespace Aws