/** * 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 CloudWatchRUM { namespace Model { AppMonitorDetails::AppMonitorDetails() : m_idHasBeenSet(false), m_nameHasBeenSet(false), m_versionHasBeenSet(false) { } AppMonitorDetails::AppMonitorDetails(JsonView jsonValue) : m_idHasBeenSet(false), m_nameHasBeenSet(false), m_versionHasBeenSet(false) { *this = jsonValue; } AppMonitorDetails& AppMonitorDetails::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("id")) { m_id = jsonValue.GetString("id"); m_idHasBeenSet = true; } if(jsonValue.ValueExists("name")) { m_name = jsonValue.GetString("name"); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("version")) { m_version = jsonValue.GetString("version"); m_versionHasBeenSet = true; } return *this; } JsonValue AppMonitorDetails::Jsonize() const { JsonValue payload; if(m_idHasBeenSet) { payload.WithString("id", m_id); } if(m_nameHasBeenSet) { payload.WithString("name", m_name); } if(m_versionHasBeenSet) { payload.WithString("version", m_version); } return payload; } } // namespace Model } // namespace CloudWatchRUM } // namespace Aws