/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::ConnectWisdomService::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; StartContentUploadRequest::StartContentUploadRequest() : m_contentTypeHasBeenSet(false), m_knowledgeBaseIdHasBeenSet(false) { } Aws::String StartContentUploadRequest::SerializePayload() const { JsonValue payload; if(m_contentTypeHasBeenSet) { payload.WithString("contentType", m_contentType); } return payload.View().WriteReadable(); }