AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
ImageSetsMetadataSummary.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/medical-imaging/MedicalImaging_EXPORTS.h>
10#include <aws/medical-imaging/model/DICOMTags.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace MedicalImaging {
22namespace Model {
23
30 public:
31 AWS_MEDICALIMAGING_API ImageSetsMetadataSummary() = default;
32 AWS_MEDICALIMAGING_API ImageSetsMetadataSummary(Aws::Utils::Json::JsonView jsonValue);
34 AWS_MEDICALIMAGING_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetImageSetId() const { return m_imageSetId; }
41 inline bool ImageSetIdHasBeenSet() const { return m_imageSetIdHasBeenSet; }
42 template <typename ImageSetIdT = Aws::String>
43 void SetImageSetId(ImageSetIdT&& value) {
44 m_imageSetIdHasBeenSet = true;
45 m_imageSetId = std::forward<ImageSetIdT>(value);
46 }
47 template <typename ImageSetIdT = Aws::String>
49 SetImageSetId(std::forward<ImageSetIdT>(value));
50 return *this;
51 }
53
55
58 inline int GetVersion() const { return m_version; }
59 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
60 inline void SetVersion(int value) {
61 m_versionHasBeenSet = true;
62 m_version = value;
63 }
65 SetVersion(value);
66 return *this;
67 }
69
71
75 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
76 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
77 template <typename CreatedAtT = Aws::Utils::DateTime>
78 void SetCreatedAt(CreatedAtT&& value) {
79 m_createdAtHasBeenSet = true;
80 m_createdAt = std::forward<CreatedAtT>(value);
81 }
82 template <typename CreatedAtT = Aws::Utils::DateTime>
84 SetCreatedAt(std::forward<CreatedAtT>(value));
85 return *this;
86 }
88
90
93 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
94 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
95 template <typename UpdatedAtT = Aws::Utils::DateTime>
96 void SetUpdatedAt(UpdatedAtT&& value) {
97 m_updatedAtHasBeenSet = true;
98 m_updatedAt = std::forward<UpdatedAtT>(value);
99 }
100 template <typename UpdatedAtT = Aws::Utils::DateTime>
102 SetUpdatedAt(std::forward<UpdatedAtT>(value));
103 return *this;
104 }
106
108
111 inline const DICOMTags& GetDICOMTags() const { return m_dICOMTags; }
112 inline bool DICOMTagsHasBeenSet() const { return m_dICOMTagsHasBeenSet; }
113 template <typename DICOMTagsT = DICOMTags>
114 void SetDICOMTags(DICOMTagsT&& value) {
115 m_dICOMTagsHasBeenSet = true;
116 m_dICOMTags = std::forward<DICOMTagsT>(value);
117 }
118 template <typename DICOMTagsT = DICOMTags>
120 SetDICOMTags(std::forward<DICOMTagsT>(value));
121 return *this;
122 }
124
126
129 inline bool GetIsPrimary() const { return m_isPrimary; }
130 inline bool IsPrimaryHasBeenSet() const { return m_isPrimaryHasBeenSet; }
131 inline void SetIsPrimary(bool value) {
132 m_isPrimaryHasBeenSet = true;
133 m_isPrimary = value;
134 }
136 SetIsPrimary(value);
137 return *this;
138 }
140 private:
141 Aws::String m_imageSetId;
142 bool m_imageSetIdHasBeenSet = false;
143
144 int m_version{0};
145 bool m_versionHasBeenSet = false;
146
147 Aws::Utils::DateTime m_createdAt{};
148 bool m_createdAtHasBeenSet = false;
149
150 Aws::Utils::DateTime m_updatedAt{};
151 bool m_updatedAtHasBeenSet = false;
152
153 DICOMTags m_dICOMTags;
154 bool m_dICOMTagsHasBeenSet = false;
155
156 bool m_isPrimary{false};
157 bool m_isPrimaryHasBeenSet = false;
158};
159
160} // namespace Model
161} // namespace MedicalImaging
162} // namespace Aws
ImageSetsMetadataSummary & WithDICOMTags(DICOMTagsT &&value)
AWS_MEDICALIMAGING_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_MEDICALIMAGING_API ImageSetsMetadataSummary(Aws::Utils::Json::JsonView jsonValue)
ImageSetsMetadataSummary & WithUpdatedAt(UpdatedAtT &&value)
AWS_MEDICALIMAGING_API ImageSetsMetadataSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDICALIMAGING_API ImageSetsMetadataSummary()=default
ImageSetsMetadataSummary & WithCreatedAt(CreatedAtT &&value)
ImageSetsMetadataSummary & WithImageSetId(ImageSetIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue