1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/forecast/model/ListDatasetGroupsRequest.h>
7 #include <aws/core/utils/json/JsonSerializer.h>
8 
9 #include <utility>
10 
11 using namespace Aws::ForecastService::Model;
12 using namespace Aws::Utils::Json;
13 using namespace Aws::Utils;
14 
ListDatasetGroupsRequest()15 ListDatasetGroupsRequest::ListDatasetGroupsRequest() :
16     m_nextTokenHasBeenSet(false),
17     m_maxResults(0),
18     m_maxResultsHasBeenSet(false)
19 {
20 }
21 
SerializePayload() const22 Aws::String ListDatasetGroupsRequest::SerializePayload() const
23 {
24   JsonValue payload;
25 
26   if(m_nextTokenHasBeenSet)
27   {
28    payload.WithString("NextToken", m_nextToken);
29 
30   }
31 
32   if(m_maxResultsHasBeenSet)
33   {
34    payload.WithInteger("MaxResults", m_maxResults);
35 
36   }
37 
38   return payload.View().WriteReadable();
39 }
40 
GetRequestSpecificHeaders() const41 Aws::Http::HeaderValueCollection ListDatasetGroupsRequest::GetRequestSpecificHeaders() const
42 {
43   Aws::Http::HeaderValueCollection headers;
44   headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AmazonForecast.ListDatasetGroups"));
45   return headers;
46 
47 }
48 
49 
50 
51 
52