AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DeleteQuickResponseRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/qconnect/QConnectRequest.h>
9#include <aws/qconnect/QConnect_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace QConnect {
15namespace Model {
16
20 public:
21 AWS_QCONNECT_API DeleteQuickResponseRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DeleteQuickResponse"; }
28
29 AWS_QCONNECT_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetKnowledgeBaseId() const { return m_knowledgeBaseId; }
37 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
38 template <typename KnowledgeBaseIdT = Aws::String>
40 m_knowledgeBaseIdHasBeenSet = true;
41 m_knowledgeBaseId = std::forward<KnowledgeBaseIdT>(value);
42 }
43 template <typename KnowledgeBaseIdT = Aws::String>
45 SetKnowledgeBaseId(std::forward<KnowledgeBaseIdT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetQuickResponseId() const { return m_quickResponseId; }
55 inline bool QuickResponseIdHasBeenSet() const { return m_quickResponseIdHasBeenSet; }
56 template <typename QuickResponseIdT = Aws::String>
58 m_quickResponseIdHasBeenSet = true;
59 m_quickResponseId = std::forward<QuickResponseIdT>(value);
60 }
61 template <typename QuickResponseIdT = Aws::String>
63 SetQuickResponseId(std::forward<QuickResponseIdT>(value));
64 return *this;
65 }
67 private:
68 Aws::String m_knowledgeBaseId;
69
70 Aws::String m_quickResponseId;
71 bool m_knowledgeBaseIdHasBeenSet = false;
72 bool m_quickResponseIdHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace QConnect
77} // namespace Aws
DeleteQuickResponseRequest & WithKnowledgeBaseId(KnowledgeBaseIdT &&value)
DeleteQuickResponseRequest & WithQuickResponseId(QuickResponseIdT &&value)
AWS_QCONNECT_API DeleteQuickResponseRequest()=default
AWS_QCONNECT_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String