AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
BasicLayout.h
1
6#pragma once
7#include <aws/connectcases/ConnectCases_EXPORTS.h>
8#include <aws/connectcases/model/LayoutSections.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace ConnectCases
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_CONNECTCASES_API BasicLayout() = default;
37 AWS_CONNECTCASES_API BasicLayout(Aws::Utils::Json::JsonView jsonValue);
38 AWS_CONNECTCASES_API BasicLayout& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_CONNECTCASES_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const LayoutSections& GetMoreInfo() const { return m_moreInfo; }
47 inline bool MoreInfoHasBeenSet() const { return m_moreInfoHasBeenSet; }
48 template<typename MoreInfoT = LayoutSections>
49 void SetMoreInfo(MoreInfoT&& value) { m_moreInfoHasBeenSet = true; m_moreInfo = std::forward<MoreInfoT>(value); }
50 template<typename MoreInfoT = LayoutSections>
51 BasicLayout& WithMoreInfo(MoreInfoT&& value) { SetMoreInfo(std::forward<MoreInfoT>(value)); return *this;}
53
55
58 inline const LayoutSections& GetTopPanel() const { return m_topPanel; }
59 inline bool TopPanelHasBeenSet() const { return m_topPanelHasBeenSet; }
60 template<typename TopPanelT = LayoutSections>
61 void SetTopPanel(TopPanelT&& value) { m_topPanelHasBeenSet = true; m_topPanel = std::forward<TopPanelT>(value); }
62 template<typename TopPanelT = LayoutSections>
63 BasicLayout& WithTopPanel(TopPanelT&& value) { SetTopPanel(std::forward<TopPanelT>(value)); return *this;}
65 private:
66
67 LayoutSections m_moreInfo;
68 bool m_moreInfoHasBeenSet = false;
69
70 LayoutSections m_topPanel;
71 bool m_topPanelHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace ConnectCases
76} // namespace Aws
AWS_CONNECTCASES_API BasicLayout & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetMoreInfo(MoreInfoT &&value)
Definition BasicLayout.h:49
AWS_CONNECTCASES_API BasicLayout(Aws::Utils::Json::JsonView jsonValue)
void SetTopPanel(TopPanelT &&value)
Definition BasicLayout.h:61
AWS_CONNECTCASES_API BasicLayout()=default
AWS_CONNECTCASES_API Aws::Utils::Json::JsonValue Jsonize() const
const LayoutSections & GetMoreInfo() const
Definition BasicLayout.h:46
BasicLayout & WithTopPanel(TopPanelT &&value)
Definition BasicLayout.h:63
BasicLayout & WithMoreInfo(MoreInfoT &&value)
Definition BasicLayout.h:51
const LayoutSections & GetTopPanel() const
Definition BasicLayout.h:58
Aws::Utils::Json::JsonValue JsonValue