/** * 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 CleanRooms { namespace Model { BatchGetSchemaError::BatchGetSchemaError() : m_nameHasBeenSet(false), m_codeHasBeenSet(false), m_messageHasBeenSet(false) { } BatchGetSchemaError::BatchGetSchemaError(JsonView jsonValue) : m_nameHasBeenSet(false), m_codeHasBeenSet(false), m_messageHasBeenSet(false) { *this = jsonValue; } BatchGetSchemaError& BatchGetSchemaError::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("name")) { m_name = jsonValue.GetString("name"); m_nameHasBeenSet = true; } if(jsonValue.ValueExists("code")) { m_code = jsonValue.GetString("code"); m_codeHasBeenSet = true; } if(jsonValue.ValueExists("message")) { m_message = jsonValue.GetString("message"); m_messageHasBeenSet = true; } return *this; } JsonValue BatchGetSchemaError::Jsonize() const { JsonValue payload; if(m_nameHasBeenSet) { payload.WithString("name", m_name); } if(m_codeHasBeenSet) { payload.WithString("code", m_code); } if(m_messageHasBeenSet) { payload.WithString("message", m_message); } return payload; } } // namespace Model } // namespace CleanRooms } // namespace Aws