AWS SDK for C++

AWS SDK for C++ Version 1.11.809

Loading...
Searching...
No Matches
DisassociateMpaTeamRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/payment-cryptography/PaymentCryptographyRequest.h>
9#include <aws/payment-cryptography/PaymentCryptography_EXPORTS.h>
10#include <aws/payment-cryptography/model/MpaOperation.h>
11
12#include <utility>
13
14namespace Aws {
15namespace PaymentCryptography {
16namespace Model {
17
21 public:
22 AWS_PAYMENTCRYPTOGRAPHY_API DisassociateMpaTeamRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "DisassociateMpaTeam"; }
29
30 AWS_PAYMENTCRYPTOGRAPHY_API Aws::String SerializePayload() const override;
31
32 AWS_PAYMENTCRYPTOGRAPHY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
33
35
39 inline MpaOperation GetAction() const { return m_action; }
40 inline bool ActionHasBeenSet() const { return m_actionHasBeenSet; }
41 inline void SetAction(MpaOperation value) {
42 m_actionHasBeenSet = true;
43 m_action = value;
44 }
46 SetAction(value);
47 return *this;
48 }
50
52
58 inline const Aws::String& GetRequesterComment() const { return m_requesterComment; }
59 inline bool RequesterCommentHasBeenSet() const { return m_requesterCommentHasBeenSet; }
60 template <typename RequesterCommentT = Aws::String>
61 void SetRequesterComment(RequesterCommentT&& value) {
62 m_requesterCommentHasBeenSet = true;
63 m_requesterComment = std::forward<RequesterCommentT>(value);
64 }
65 template <typename RequesterCommentT = Aws::String>
67 SetRequesterComment(std::forward<RequesterCommentT>(value));
68 return *this;
69 }
71 private:
73
74 Aws::String m_requesterComment;
75 bool m_actionHasBeenSet = false;
76 bool m_requesterCommentHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace PaymentCryptography
81} // namespace Aws
AWS_PAYMENTCRYPTOGRAPHY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DisassociateMpaTeamRequest & WithAction(MpaOperation value)
DisassociateMpaTeamRequest & WithRequesterComment(RequesterCommentT &&value)
AWS_PAYMENTCRYPTOGRAPHY_API Aws::String SerializePayload() const override
AWS_PAYMENTCRYPTOGRAPHY_API DisassociateMpaTeamRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String