1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/macie2/model/ListCustomDataIdentifiersRequest.h>
7 #include <aws/core/utils/json/JsonSerializer.h>
8 
9 #include <utility>
10 
11 using namespace Aws::Macie2::Model;
12 using namespace Aws::Utils::Json;
13 using namespace Aws::Utils;
14 
ListCustomDataIdentifiersRequest()15 ListCustomDataIdentifiersRequest::ListCustomDataIdentifiersRequest() :
16     m_maxResults(0),
17     m_maxResultsHasBeenSet(false),
18     m_nextTokenHasBeenSet(false)
19 {
20 }
21 
SerializePayload() const22 Aws::String ListCustomDataIdentifiersRequest::SerializePayload() const
23 {
24   JsonValue payload;
25 
26   if(m_maxResultsHasBeenSet)
27   {
28    payload.WithInteger("maxResults", m_maxResults);
29 
30   }
31 
32   if(m_nextTokenHasBeenSet)
33   {
34    payload.WithString("nextToken", m_nextToken);
35 
36   }
37 
38   return payload.View().WriteReadable();
39 }
40 
41 
42 
43 
44