AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CallAnalyticsSkippedFeature.h
1
6#pragma once
7#include <aws/transcribe/TranscribeService_EXPORTS.h>
8#include <aws/transcribe/model/CallAnalyticsFeature.h>
9#include <aws/transcribe/model/CallAnalyticsSkippedReasonCode.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace TranscribeService
24{
25namespace Model
26{
27
40 {
41 public:
42 AWS_TRANSCRIBESERVICE_API CallAnalyticsSkippedFeature();
43 AWS_TRANSCRIBESERVICE_API CallAnalyticsSkippedFeature(Aws::Utils::Json::JsonView jsonValue);
45 AWS_TRANSCRIBESERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
46
47
49
53 inline const CallAnalyticsFeature& GetFeature() const{ return m_feature; }
54 inline bool FeatureHasBeenSet() const { return m_featureHasBeenSet; }
55 inline void SetFeature(const CallAnalyticsFeature& value) { m_featureHasBeenSet = true; m_feature = value; }
56 inline void SetFeature(CallAnalyticsFeature&& value) { m_featureHasBeenSet = true; m_feature = std::move(value); }
57 inline CallAnalyticsSkippedFeature& WithFeature(const CallAnalyticsFeature& value) { SetFeature(value); return *this;}
58 inline CallAnalyticsSkippedFeature& WithFeature(CallAnalyticsFeature&& value) { SetFeature(std::move(value)); return *this;}
60
62
66 inline const CallAnalyticsSkippedReasonCode& GetReasonCode() const{ return m_reasonCode; }
67 inline bool ReasonCodeHasBeenSet() const { return m_reasonCodeHasBeenSet; }
68 inline void SetReasonCode(const CallAnalyticsSkippedReasonCode& value) { m_reasonCodeHasBeenSet = true; m_reasonCode = value; }
69 inline void SetReasonCode(CallAnalyticsSkippedReasonCode&& value) { m_reasonCodeHasBeenSet = true; m_reasonCode = std::move(value); }
73
75
79 inline const Aws::String& GetMessage() const{ return m_message; }
80 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
81 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
82 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
83 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
84 inline CallAnalyticsSkippedFeature& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
85 inline CallAnalyticsSkippedFeature& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
86 inline CallAnalyticsSkippedFeature& WithMessage(const char* value) { SetMessage(value); return *this;}
88 private:
89
90 CallAnalyticsFeature m_feature;
91 bool m_featureHasBeenSet = false;
92
94 bool m_reasonCodeHasBeenSet = false;
95
96 Aws::String m_message;
97 bool m_messageHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace TranscribeService
102} // namespace Aws
CallAnalyticsSkippedFeature & WithReasonCode(const CallAnalyticsSkippedReasonCode &value)
CallAnalyticsSkippedFeature & WithFeature(const CallAnalyticsFeature &value)
AWS_TRANSCRIBESERVICE_API CallAnalyticsSkippedFeature(Aws::Utils::Json::JsonView jsonValue)
AWS_TRANSCRIBESERVICE_API CallAnalyticsSkippedFeature & operator=(Aws::Utils::Json::JsonView jsonValue)
CallAnalyticsSkippedFeature & WithReasonCode(CallAnalyticsSkippedReasonCode &&value)
AWS_TRANSCRIBESERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
CallAnalyticsSkippedFeature & WithFeature(CallAnalyticsFeature &&value)
CallAnalyticsSkippedFeature & WithMessage(Aws::String &&value)
CallAnalyticsSkippedFeature & WithMessage(const Aws::String &value)
const CallAnalyticsSkippedReasonCode & GetReasonCode() const
void SetReasonCode(const CallAnalyticsSkippedReasonCode &value)
CallAnalyticsSkippedFeature & WithMessage(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue