1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/forecastquery/model/DataPoint.h>
7 #include <aws/core/utils/json/JsonSerializer.h>
8 
9 #include <utility>
10 
11 using namespace Aws::Utils::Json;
12 using namespace Aws::Utils;
13 
14 namespace Aws
15 {
16 namespace ForecastQueryService
17 {
18 namespace Model
19 {
20 
DataPoint()21 DataPoint::DataPoint() :
22     m_timestampHasBeenSet(false),
23     m_value(0.0),
24     m_valueHasBeenSet(false)
25 {
26 }
27 
DataPoint(JsonView jsonValue)28 DataPoint::DataPoint(JsonView jsonValue) :
29     m_timestampHasBeenSet(false),
30     m_value(0.0),
31     m_valueHasBeenSet(false)
32 {
33   *this = jsonValue;
34 }
35 
operator =(JsonView jsonValue)36 DataPoint& DataPoint::operator =(JsonView jsonValue)
37 {
38   if(jsonValue.ValueExists("Timestamp"))
39   {
40     m_timestamp = jsonValue.GetString("Timestamp");
41 
42     m_timestampHasBeenSet = true;
43   }
44 
45   if(jsonValue.ValueExists("Value"))
46   {
47     m_value = jsonValue.GetDouble("Value");
48 
49     m_valueHasBeenSet = true;
50   }
51 
52   return *this;
53 }
54 
Jsonize() const55 JsonValue DataPoint::Jsonize() const
56 {
57   JsonValue payload;
58 
59   if(m_timestampHasBeenSet)
60   {
61    payload.WithString("Timestamp", m_timestamp);
62 
63   }
64 
65   if(m_valueHasBeenSet)
66   {
67    payload.WithDouble("Value", m_value);
68 
69   }
70 
71   return payload;
72 }
73 
74 } // namespace Model
75 } // namespace ForecastQueryService
76 } // namespace Aws
77