/** * 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::Backup::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; ListBackupPlanVersionsResult::ListBackupPlanVersionsResult() { } ListBackupPlanVersionsResult::ListBackupPlanVersionsResult(const Aws::AmazonWebServiceResult& result) { *this = result; } ListBackupPlanVersionsResult& ListBackupPlanVersionsResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("NextToken")) { m_nextToken = jsonValue.GetString("NextToken"); } if(jsonValue.ValueExists("BackupPlanVersionsList")) { Array backupPlanVersionsListJsonList = jsonValue.GetArray("BackupPlanVersionsList"); for(unsigned backupPlanVersionsListIndex = 0; backupPlanVersionsListIndex < backupPlanVersionsListJsonList.GetLength(); ++backupPlanVersionsListIndex) { m_backupPlanVersionsList.push_back(backupPlanVersionsListJsonList[backupPlanVersionsListIndex].AsObject()); } } return *this; }