AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
MedicalScribeTranscriptItem.h
1
6#pragma once
7#include <aws/transcribestreaming/TranscribeStreamingService_EXPORTS.h>
8#include <aws/transcribestreaming/model/MedicalScribeTranscriptItemType.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace TranscribeStreamingService
23{
24namespace Model
25{
26
35 {
36 public:
37 AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalScribeTranscriptItem() = default;
38 AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalScribeTranscriptItem(Aws::Utils::Json::JsonView jsonValue);
39 AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalScribeTranscriptItem& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_TRANSCRIBESTREAMINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline double GetBeginAudioTime() const { return m_beginAudioTime; }
48 inline bool BeginAudioTimeHasBeenSet() const { return m_beginAudioTimeHasBeenSet; }
49 inline void SetBeginAudioTime(double value) { m_beginAudioTimeHasBeenSet = true; m_beginAudioTime = value; }
50 inline MedicalScribeTranscriptItem& WithBeginAudioTime(double value) { SetBeginAudioTime(value); return *this;}
52
54
57 inline double GetEndAudioTime() const { return m_endAudioTime; }
58 inline bool EndAudioTimeHasBeenSet() const { return m_endAudioTimeHasBeenSet; }
59 inline void SetEndAudioTime(double value) { m_endAudioTimeHasBeenSet = true; m_endAudioTime = value; }
60 inline MedicalScribeTranscriptItem& WithEndAudioTime(double value) { SetEndAudioTime(value); return *this;}
62
64
68 inline MedicalScribeTranscriptItemType GetType() const { return m_type; }
69 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
70 inline void SetType(MedicalScribeTranscriptItemType value) { m_typeHasBeenSet = true; m_type = value; }
73
75
81 inline double GetConfidence() const { return m_confidence; }
82 inline bool ConfidenceHasBeenSet() const { return m_confidenceHasBeenSet; }
83 inline void SetConfidence(double value) { m_confidenceHasBeenSet = true; m_confidence = value; }
84 inline MedicalScribeTranscriptItem& WithConfidence(double value) { SetConfidence(value); return *this;}
86
88
91 inline const Aws::String& GetContent() const { return m_content; }
92 inline bool ContentHasBeenSet() const { return m_contentHasBeenSet; }
93 template<typename ContentT = Aws::String>
94 void SetContent(ContentT&& value) { m_contentHasBeenSet = true; m_content = std::forward<ContentT>(value); }
95 template<typename ContentT = Aws::String>
96 MedicalScribeTranscriptItem& WithContent(ContentT&& value) { SetContent(std::forward<ContentT>(value)); return *this;}
98
100
105 inline bool GetVocabularyFilterMatch() const { return m_vocabularyFilterMatch; }
106 inline bool VocabularyFilterMatchHasBeenSet() const { return m_vocabularyFilterMatchHasBeenSet; }
107 inline void SetVocabularyFilterMatch(bool value) { m_vocabularyFilterMatchHasBeenSet = true; m_vocabularyFilterMatch = value; }
110 private:
111
112 double m_beginAudioTime{0.0};
113 bool m_beginAudioTimeHasBeenSet = false;
114
115 double m_endAudioTime{0.0};
116 bool m_endAudioTimeHasBeenSet = false;
117
119 bool m_typeHasBeenSet = false;
120
121 double m_confidence{0.0};
122 bool m_confidenceHasBeenSet = false;
123
124 Aws::String m_content;
125 bool m_contentHasBeenSet = false;
126
127 bool m_vocabularyFilterMatch{false};
128 bool m_vocabularyFilterMatchHasBeenSet = false;
129 };
130
131} // namespace Model
132} // namespace TranscribeStreamingService
133} // namespace Aws
AWS_TRANSCRIBESTREAMINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalScribeTranscriptItem(Aws::Utils::Json::JsonView jsonValue)
AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalScribeTranscriptItem()=default
MedicalScribeTranscriptItem & WithType(MedicalScribeTranscriptItemType value)
AWS_TRANSCRIBESTREAMINGSERVICE_API MedicalScribeTranscriptItem & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue