/** * 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 Appflow { namespace Model { TrendmicroSourceProperties::TrendmicroSourceProperties() : m_objectHasBeenSet(false) { } TrendmicroSourceProperties::TrendmicroSourceProperties(JsonView jsonValue) : m_objectHasBeenSet(false) { *this = jsonValue; } TrendmicroSourceProperties& TrendmicroSourceProperties::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("object")) { m_object = jsonValue.GetString("object"); m_objectHasBeenSet = true; } return *this; } JsonValue TrendmicroSourceProperties::Jsonize() const { JsonValue payload; if(m_objectHasBeenSet) { payload.WithString("object", m_object); } return payload; } } // namespace Model } // namespace Appflow } // namespace Aws