AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
MedicalEntity.h
1
6#pragma once
7#include <aws/transcribestreaming/TranscribeStreamingService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.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 TranscribeStreamingService
22{
23namespace Model
24{
25
35 {
36 public:
37 AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalEntity();
38 AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalEntity(Aws::Utils::Json::JsonView jsonValue);
39 AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalEntity& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_TRANSCRIBESTREAMINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
48 inline double GetStartTime() const{ return m_startTime; }
49 inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; }
50 inline void SetStartTime(double value) { m_startTimeHasBeenSet = true; m_startTime = value; }
51 inline MedicalEntity& WithStartTime(double value) { SetStartTime(value); return *this;}
53
55
59 inline double GetEndTime() const{ return m_endTime; }
60 inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; }
61 inline void SetEndTime(double value) { m_endTimeHasBeenSet = true; m_endTime = value; }
62 inline MedicalEntity& WithEndTime(double value) { SetEndTime(value); return *this;}
64
66
70 inline const Aws::String& GetCategory() const{ return m_category; }
71 inline bool CategoryHasBeenSet() const { return m_categoryHasBeenSet; }
72 inline void SetCategory(const Aws::String& value) { m_categoryHasBeenSet = true; m_category = value; }
73 inline void SetCategory(Aws::String&& value) { m_categoryHasBeenSet = true; m_category = std::move(value); }
74 inline void SetCategory(const char* value) { m_categoryHasBeenSet = true; m_category.assign(value); }
75 inline MedicalEntity& WithCategory(const Aws::String& value) { SetCategory(value); return *this;}
76 inline MedicalEntity& WithCategory(Aws::String&& value) { SetCategory(std::move(value)); return *this;}
77 inline MedicalEntity& WithCategory(const char* value) { SetCategory(value); return *this;}
79
81
84 inline const Aws::String& GetContent() const{ return m_content; }
85 inline bool ContentHasBeenSet() const { return m_contentHasBeenSet; }
86 inline void SetContent(const Aws::String& value) { m_contentHasBeenSet = true; m_content = value; }
87 inline void SetContent(Aws::String&& value) { m_contentHasBeenSet = true; m_content = std::move(value); }
88 inline void SetContent(const char* value) { m_contentHasBeenSet = true; m_content.assign(value); }
89 inline MedicalEntity& WithContent(const Aws::String& value) { SetContent(value); return *this;}
90 inline MedicalEntity& WithContent(Aws::String&& value) { SetContent(std::move(value)); return *this;}
91 inline MedicalEntity& WithContent(const char* value) { SetContent(value); return *this;}
93
95
101 inline double GetConfidence() const{ return m_confidence; }
102 inline bool ConfidenceHasBeenSet() const { return m_confidenceHasBeenSet; }
103 inline void SetConfidence(double value) { m_confidenceHasBeenSet = true; m_confidence = value; }
104 inline MedicalEntity& WithConfidence(double value) { SetConfidence(value); return *this;}
106 private:
107
108 double m_startTime;
109 bool m_startTimeHasBeenSet = false;
110
111 double m_endTime;
112 bool m_endTimeHasBeenSet = false;
113
114 Aws::String m_category;
115 bool m_categoryHasBeenSet = false;
116
117 Aws::String m_content;
118 bool m_contentHasBeenSet = false;
119
120 double m_confidence;
121 bool m_confidenceHasBeenSet = false;
122 };
123
124} // namespace Model
125} // namespace TranscribeStreamingService
126} // namespace Aws
MedicalEntity & WithContent(const char *value)
AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalEntity(Aws::Utils::Json::JsonView jsonValue)
MedicalEntity & WithContent(Aws::String &&value)
AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalEntity & operator=(Aws::Utils::Json::JsonView jsonValue)
MedicalEntity & WithCategory(Aws::String &&value)
AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalEntity()
MedicalEntity & WithContent(const Aws::String &value)
MedicalEntity & WithCategory(const Aws::String &value)
AWS_TRANSCRIBESTREAMINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
MedicalEntity & WithCategory(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue