/** * 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 mgn { namespace Model { OS::OS() : m_fullStringHasBeenSet(false) { } OS::OS(JsonView jsonValue) : m_fullStringHasBeenSet(false) { *this = jsonValue; } OS& OS::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("fullString")) { m_fullString = jsonValue.GetString("fullString"); m_fullStringHasBeenSet = true; } return *this; } JsonValue OS::Jsonize() const { JsonValue payload; if(m_fullStringHasBeenSet) { payload.WithString("fullString", m_fullString); } return payload; } } // namespace Model } // namespace mgn } // namespace Aws