1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #include <aws/glacier/model/InsufficientCapacityException.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 Glacier
17 {
18 namespace Model
19 {
20 
InsufficientCapacityException()21 InsufficientCapacityException::InsufficientCapacityException() :
22     m_typeHasBeenSet(false),
23     m_codeHasBeenSet(false),
24     m_messageHasBeenSet(false)
25 {
26 }
27 
InsufficientCapacityException(JsonView jsonValue)28 InsufficientCapacityException::InsufficientCapacityException(JsonView jsonValue) :
29     m_typeHasBeenSet(false),
30     m_codeHasBeenSet(false),
31     m_messageHasBeenSet(false)
32 {
33   *this = jsonValue;
34 }
35 
operator =(JsonView jsonValue)36 InsufficientCapacityException& InsufficientCapacityException::operator =(JsonView jsonValue)
37 {
38   if(jsonValue.ValueExists("type"))
39   {
40     m_type = jsonValue.GetString("type");
41 
42     m_typeHasBeenSet = true;
43   }
44 
45   if(jsonValue.ValueExists("code"))
46   {
47     m_code = jsonValue.GetString("code");
48 
49     m_codeHasBeenSet = true;
50   }
51 
52   if(jsonValue.ValueExists("message"))
53   {
54     m_message = jsonValue.GetString("message");
55 
56     m_messageHasBeenSet = true;
57   }
58 
59   return *this;
60 }
61 
Jsonize() const62 JsonValue InsufficientCapacityException::Jsonize() const
63 {
64   JsonValue payload;
65 
66   if(m_typeHasBeenSet)
67   {
68    payload.WithString("type", m_type);
69 
70   }
71 
72   if(m_codeHasBeenSet)
73   {
74    payload.WithString("code", m_code);
75 
76   }
77 
78   if(m_messageHasBeenSet)
79   {
80    payload.WithString("message", m_message);
81 
82   }
83 
84   return payload;
85 }
86 
87 } // namespace Model
88 } // namespace Glacier
89 } // namespace Aws
90