/** * 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 SageMaker { namespace Model { Explainability::Explainability() : m_reportHasBeenSet(false) { } Explainability::Explainability(JsonView jsonValue) : m_reportHasBeenSet(false) { *this = jsonValue; } Explainability& Explainability::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Report")) { m_report = jsonValue.GetObject("Report"); m_reportHasBeenSet = true; } return *this; } JsonValue Explainability::Jsonize() const { JsonValue payload; if(m_reportHasBeenSet) { payload.WithObject("Report", m_report.Jsonize()); } return payload; } } // namespace Model } // namespace SageMaker } // namespace Aws