/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/oam/model/ServiceQuotaExceededException.h> #include <aws/core/utils/json/JsonSerializer.h> #include <aws/core/utils/memory/stl/AWSStringStream.h> #include <utility> using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace OAM { namespace Model { ServiceQuotaExceededException::ServiceQuotaExceededException() : m_messageHasBeenSet(false), m_amznErrorTypeHasBeenSet(false) { } ServiceQuotaExceededException::ServiceQuotaExceededException(JsonView jsonValue) : m_messageHasBeenSet(false), m_amznErrorTypeHasBeenSet(false) { *this = jsonValue; } ServiceQuotaExceededException& ServiceQuotaExceededException::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Message")) { m_message = jsonValue.GetString("Message"); m_messageHasBeenSet = true; } return *this; } JsonValue ServiceQuotaExceededException::Jsonize() const { JsonValue payload; if(m_messageHasBeenSet) { payload.WithString("Message", m_message); } return payload; } } // namespace Model } // namespace OAM } // namespace Aws