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