/** * 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 ManagedBlockchain { namespace Model { MemberFrameworkConfiguration::MemberFrameworkConfiguration() : m_fabricHasBeenSet(false) { } MemberFrameworkConfiguration::MemberFrameworkConfiguration(JsonView jsonValue) : m_fabricHasBeenSet(false) { *this = jsonValue; } MemberFrameworkConfiguration& MemberFrameworkConfiguration::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Fabric")) { m_fabric = jsonValue.GetObject("Fabric"); m_fabricHasBeenSet = true; } return *this; } JsonValue MemberFrameworkConfiguration::Jsonize() const { JsonValue payload; if(m_fabricHasBeenSet) { payload.WithObject("Fabric", m_fabric.Jsonize()); } return payload; } } // namespace Model } // namespace ManagedBlockchain } // namespace Aws