/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include using namespace Aws::Greengrass::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; ListSubscriptionDefinitionVersionsResult::ListSubscriptionDefinitionVersionsResult() { } ListSubscriptionDefinitionVersionsResult::ListSubscriptionDefinitionVersionsResult(const Aws::AmazonWebServiceResult& result) { *this = result; } ListSubscriptionDefinitionVersionsResult& ListSubscriptionDefinitionVersionsResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("NextToken")) { m_nextToken = jsonValue.GetString("NextToken"); } if(jsonValue.ValueExists("Versions")) { Array versionsJsonList = jsonValue.GetArray("Versions"); for(unsigned versionsIndex = 0; versionsIndex < versionsJsonList.GetLength(); ++versionsIndex) { m_versions.push_back(versionsJsonList[versionsIndex].AsObject()); } } return *this; }