AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
VerifyAuthRequestCryptogramRequest.h
1
6#pragma once
7#include <aws/payment-cryptography-data/PaymentCryptographyData_EXPORTS.h>
8#include <aws/payment-cryptography-data/PaymentCryptographyDataRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/payment-cryptography-data/model/MajorKeyDerivationMode.h>
11#include <aws/payment-cryptography-data/model/SessionKeyDerivation.h>
12#include <aws/payment-cryptography-data/model/CryptogramAuthResponse.h>
13#include <utility>
14
15namespace Aws
16{
17namespace PaymentCryptographyData
18{
19namespace Model
20{
21
25 {
26 public:
27 AWS_PAYMENTCRYPTOGRAPHYDATA_API VerifyAuthRequestCryptogramRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "VerifyAuthRequestCryptogram"; }
34
35 AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::String SerializePayload() const override;
36
37
39
43 inline const Aws::String& GetKeyIdentifier() const{ return m_keyIdentifier; }
44 inline bool KeyIdentifierHasBeenSet() const { return m_keyIdentifierHasBeenSet; }
45 inline void SetKeyIdentifier(const Aws::String& value) { m_keyIdentifierHasBeenSet = true; m_keyIdentifier = value; }
46 inline void SetKeyIdentifier(Aws::String&& value) { m_keyIdentifierHasBeenSet = true; m_keyIdentifier = std::move(value); }
47 inline void SetKeyIdentifier(const char* value) { m_keyIdentifierHasBeenSet = true; m_keyIdentifier.assign(value); }
49 inline VerifyAuthRequestCryptogramRequest& WithKeyIdentifier(Aws::String&& value) { SetKeyIdentifier(std::move(value)); return *this;}
50 inline VerifyAuthRequestCryptogramRequest& WithKeyIdentifier(const char* value) { SetKeyIdentifier(value); return *this;}
52
54
59 inline const Aws::String& GetTransactionData() const{ return m_transactionData; }
60 inline bool TransactionDataHasBeenSet() const { return m_transactionDataHasBeenSet; }
61 inline void SetTransactionData(const Aws::String& value) { m_transactionDataHasBeenSet = true; m_transactionData = value; }
62 inline void SetTransactionData(Aws::String&& value) { m_transactionDataHasBeenSet = true; m_transactionData = std::move(value); }
63 inline void SetTransactionData(const char* value) { m_transactionDataHasBeenSet = true; m_transactionData.assign(value); }
65 inline VerifyAuthRequestCryptogramRequest& WithTransactionData(Aws::String&& value) { SetTransactionData(std::move(value)); return *this;}
66 inline VerifyAuthRequestCryptogramRequest& WithTransactionData(const char* value) { SetTransactionData(value); return *this;}
68
70
75 inline const Aws::String& GetAuthRequestCryptogram() const{ return m_authRequestCryptogram; }
76 inline bool AuthRequestCryptogramHasBeenSet() const { return m_authRequestCryptogramHasBeenSet; }
77 inline void SetAuthRequestCryptogram(const Aws::String& value) { m_authRequestCryptogramHasBeenSet = true; m_authRequestCryptogram = value; }
78 inline void SetAuthRequestCryptogram(Aws::String&& value) { m_authRequestCryptogramHasBeenSet = true; m_authRequestCryptogram = std::move(value); }
79 inline void SetAuthRequestCryptogram(const char* value) { m_authRequestCryptogramHasBeenSet = true; m_authRequestCryptogram.assign(value); }
84
86
92 inline const MajorKeyDerivationMode& GetMajorKeyDerivationMode() const{ return m_majorKeyDerivationMode; }
93 inline bool MajorKeyDerivationModeHasBeenSet() const { return m_majorKeyDerivationModeHasBeenSet; }
94 inline void SetMajorKeyDerivationMode(const MajorKeyDerivationMode& value) { m_majorKeyDerivationModeHasBeenSet = true; m_majorKeyDerivationMode = value; }
95 inline void SetMajorKeyDerivationMode(MajorKeyDerivationMode&& value) { m_majorKeyDerivationModeHasBeenSet = true; m_majorKeyDerivationMode = std::move(value); }
99
101
107 inline const SessionKeyDerivation& GetSessionKeyDerivationAttributes() const{ return m_sessionKeyDerivationAttributes; }
108 inline bool SessionKeyDerivationAttributesHasBeenSet() const { return m_sessionKeyDerivationAttributesHasBeenSet; }
109 inline void SetSessionKeyDerivationAttributes(const SessionKeyDerivation& value) { m_sessionKeyDerivationAttributesHasBeenSet = true; m_sessionKeyDerivationAttributes = value; }
110 inline void SetSessionKeyDerivationAttributes(SessionKeyDerivation&& value) { m_sessionKeyDerivationAttributesHasBeenSet = true; m_sessionKeyDerivationAttributes = std::move(value); }
114
116
121 inline const CryptogramAuthResponse& GetAuthResponseAttributes() const{ return m_authResponseAttributes; }
122 inline bool AuthResponseAttributesHasBeenSet() const { return m_authResponseAttributesHasBeenSet; }
123 inline void SetAuthResponseAttributes(const CryptogramAuthResponse& value) { m_authResponseAttributesHasBeenSet = true; m_authResponseAttributes = value; }
124 inline void SetAuthResponseAttributes(CryptogramAuthResponse&& value) { m_authResponseAttributesHasBeenSet = true; m_authResponseAttributes = std::move(value); }
128 private:
129
130 Aws::String m_keyIdentifier;
131 bool m_keyIdentifierHasBeenSet = false;
132
133 Aws::String m_transactionData;
134 bool m_transactionDataHasBeenSet = false;
135
136 Aws::String m_authRequestCryptogram;
137 bool m_authRequestCryptogramHasBeenSet = false;
138
139 MajorKeyDerivationMode m_majorKeyDerivationMode;
140 bool m_majorKeyDerivationModeHasBeenSet = false;
141
142 SessionKeyDerivation m_sessionKeyDerivationAttributes;
143 bool m_sessionKeyDerivationAttributesHasBeenSet = false;
144
145 CryptogramAuthResponse m_authResponseAttributes;
146 bool m_authResponseAttributesHasBeenSet = false;
147 };
148
149} // namespace Model
150} // namespace PaymentCryptographyData
151} // namespace Aws
VerifyAuthRequestCryptogramRequest & WithMajorKeyDerivationMode(MajorKeyDerivationMode &&value)
VerifyAuthRequestCryptogramRequest & WithMajorKeyDerivationMode(const MajorKeyDerivationMode &value)
VerifyAuthRequestCryptogramRequest & WithAuthResponseAttributes(const CryptogramAuthResponse &value)
VerifyAuthRequestCryptogramRequest & WithKeyIdentifier(Aws::String &&value)
VerifyAuthRequestCryptogramRequest & WithAuthResponseAttributes(CryptogramAuthResponse &&value)
VerifyAuthRequestCryptogramRequest & WithTransactionData(const Aws::String &value)
VerifyAuthRequestCryptogramRequest & WithSessionKeyDerivationAttributes(const SessionKeyDerivation &value)
AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::String SerializePayload() const override
VerifyAuthRequestCryptogramRequest & WithKeyIdentifier(const Aws::String &value)
VerifyAuthRequestCryptogramRequest & WithAuthRequestCryptogram(Aws::String &&value)
VerifyAuthRequestCryptogramRequest & WithSessionKeyDerivationAttributes(SessionKeyDerivation &&value)
VerifyAuthRequestCryptogramRequest & WithAuthRequestCryptogram(const Aws::String &value)
VerifyAuthRequestCryptogramRequest & WithTransactionData(Aws::String &&value)
VerifyAuthRequestCryptogramRequest & WithAuthRequestCryptogram(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String