/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::ivschat::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; UpdateLoggingConfigurationRequest::UpdateLoggingConfigurationRequest() : m_destinationConfigurationHasBeenSet(false), m_identifierHasBeenSet(false), m_nameHasBeenSet(false) { } Aws::String UpdateLoggingConfigurationRequest::SerializePayload() const { JsonValue payload; if(m_destinationConfigurationHasBeenSet) { payload.WithObject("destinationConfiguration", m_destinationConfiguration.Jsonize()); } if(m_identifierHasBeenSet) { payload.WithString("identifier", m_identifier); } if(m_nameHasBeenSet) { payload.WithString("name", m_name); } return payload.View().WriteReadable(); }