1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/groundstation/model/SocketAddress.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 GroundStation
17 {
18 namespace Model
19 {
20 
SocketAddress()21 SocketAddress::SocketAddress() :
22     m_nameHasBeenSet(false),
23     m_port(0),
24     m_portHasBeenSet(false)
25 {
26 }
27 
SocketAddress(JsonView jsonValue)28 SocketAddress::SocketAddress(JsonView jsonValue) :
29     m_nameHasBeenSet(false),
30     m_port(0),
31     m_portHasBeenSet(false)
32 {
33   *this = jsonValue;
34 }
35 
operator =(JsonView jsonValue)36 SocketAddress& SocketAddress::operator =(JsonView jsonValue)
37 {
38   if(jsonValue.ValueExists("name"))
39   {
40     m_name = jsonValue.GetString("name");
41 
42     m_nameHasBeenSet = true;
43   }
44 
45   if(jsonValue.ValueExists("port"))
46   {
47     m_port = jsonValue.GetInteger("port");
48 
49     m_portHasBeenSet = true;
50   }
51 
52   return *this;
53 }
54 
Jsonize() const55 JsonValue SocketAddress::Jsonize() const
56 {
57   JsonValue payload;
58 
59   if(m_nameHasBeenSet)
60   {
61    payload.WithString("name", m_name);
62 
63   }
64 
65   if(m_portHasBeenSet)
66   {
67    payload.WithInteger("port", m_port);
68 
69   }
70 
71   return payload;
72 }
73 
74 } // namespace Model
75 } // namespace GroundStation
76 } // namespace Aws
77