/** * 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 PaymentCryptography { namespace Model { ResourceNotFoundException::ResourceNotFoundException() : m_resourceIdHasBeenSet(false) { } ResourceNotFoundException::ResourceNotFoundException(JsonView jsonValue) : m_resourceIdHasBeenSet(false) { *this = jsonValue; } ResourceNotFoundException& ResourceNotFoundException::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("ResourceId")) { m_resourceId = jsonValue.GetString("ResourceId"); m_resourceIdHasBeenSet = true; } return *this; } JsonValue ResourceNotFoundException::Jsonize() const { JsonValue payload; if(m_resourceIdHasBeenSet) { payload.WithString("ResourceId", m_resourceId); } return payload; } } // namespace Model } // namespace PaymentCryptography } // namespace Aws