/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::PrivateNetworks::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; DeactivateDeviceIdentifierRequest::DeactivateDeviceIdentifierRequest() : m_clientTokenHasBeenSet(false), m_deviceIdentifierArnHasBeenSet(false) { } Aws::String DeactivateDeviceIdentifierRequest::SerializePayload() const { JsonValue payload; if(m_clientTokenHasBeenSet) { payload.WithString("clientToken", m_clientToken); } if(m_deviceIdentifierArnHasBeenSet) { payload.WithString("deviceIdentifierArn", m_deviceIdentifierArn); } return payload.View().WriteReadable(); }