AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
VerifyPinDataRequest.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/PinVerificationAttributes.h>
11#include <aws/payment-cryptography-data/model/PinBlockFormatForPinData.h>
12#include <aws/payment-cryptography-data/model/DukptAttributes.h>
13#include <aws/payment-cryptography-data/model/WrappedKey.h>
14#include <utility>
15
16namespace Aws
17{
18namespace PaymentCryptographyData
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_PAYMENTCRYPTOGRAPHYDATA_API VerifyPinDataRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "VerifyPinData"; }
35
36 AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::String SerializePayload() const override;
37
38
40
43 inline const Aws::String& GetVerificationKeyIdentifier() const{ return m_verificationKeyIdentifier; }
44 inline bool VerificationKeyIdentifierHasBeenSet() const { return m_verificationKeyIdentifierHasBeenSet; }
45 inline void SetVerificationKeyIdentifier(const Aws::String& value) { m_verificationKeyIdentifierHasBeenSet = true; m_verificationKeyIdentifier = value; }
46 inline void SetVerificationKeyIdentifier(Aws::String&& value) { m_verificationKeyIdentifierHasBeenSet = true; m_verificationKeyIdentifier = std::move(value); }
47 inline void SetVerificationKeyIdentifier(const char* value) { m_verificationKeyIdentifierHasBeenSet = true; m_verificationKeyIdentifier.assign(value); }
50 inline VerifyPinDataRequest& WithVerificationKeyIdentifier(const char* value) { SetVerificationKeyIdentifier(value); return *this;}
52
54
58 inline const Aws::String& GetEncryptionKeyIdentifier() const{ return m_encryptionKeyIdentifier; }
59 inline bool EncryptionKeyIdentifierHasBeenSet() const { return m_encryptionKeyIdentifierHasBeenSet; }
60 inline void SetEncryptionKeyIdentifier(const Aws::String& value) { m_encryptionKeyIdentifierHasBeenSet = true; m_encryptionKeyIdentifier = value; }
61 inline void SetEncryptionKeyIdentifier(Aws::String&& value) { m_encryptionKeyIdentifierHasBeenSet = true; m_encryptionKeyIdentifier = std::move(value); }
62 inline void SetEncryptionKeyIdentifier(const char* value) { m_encryptionKeyIdentifierHasBeenSet = true; m_encryptionKeyIdentifier.assign(value); }
65 inline VerifyPinDataRequest& WithEncryptionKeyIdentifier(const char* value) { SetEncryptionKeyIdentifier(value); return *this;}
67
69
72 inline const PinVerificationAttributes& GetVerificationAttributes() const{ return m_verificationAttributes; }
73 inline bool VerificationAttributesHasBeenSet() const { return m_verificationAttributesHasBeenSet; }
74 inline void SetVerificationAttributes(const PinVerificationAttributes& value) { m_verificationAttributesHasBeenSet = true; m_verificationAttributes = value; }
75 inline void SetVerificationAttributes(PinVerificationAttributes&& value) { m_verificationAttributesHasBeenSet = true; m_verificationAttributes = std::move(value); }
79
81
85 inline const Aws::String& GetEncryptedPinBlock() const{ return m_encryptedPinBlock; }
86 inline bool EncryptedPinBlockHasBeenSet() const { return m_encryptedPinBlockHasBeenSet; }
87 inline void SetEncryptedPinBlock(const Aws::String& value) { m_encryptedPinBlockHasBeenSet = true; m_encryptedPinBlock = value; }
88 inline void SetEncryptedPinBlock(Aws::String&& value) { m_encryptedPinBlockHasBeenSet = true; m_encryptedPinBlock = std::move(value); }
89 inline void SetEncryptedPinBlock(const char* value) { m_encryptedPinBlockHasBeenSet = true; m_encryptedPinBlock.assign(value); }
90 inline VerifyPinDataRequest& WithEncryptedPinBlock(const Aws::String& value) { SetEncryptedPinBlock(value); return *this;}
91 inline VerifyPinDataRequest& WithEncryptedPinBlock(Aws::String&& value) { SetEncryptedPinBlock(std::move(value)); return *this;}
92 inline VerifyPinDataRequest& WithEncryptedPinBlock(const char* value) { SetEncryptedPinBlock(value); return *this;}
94
96
100 inline const Aws::String& GetPrimaryAccountNumber() const{ return m_primaryAccountNumber; }
101 inline bool PrimaryAccountNumberHasBeenSet() const { return m_primaryAccountNumberHasBeenSet; }
102 inline void SetPrimaryAccountNumber(const Aws::String& value) { m_primaryAccountNumberHasBeenSet = true; m_primaryAccountNumber = value; }
103 inline void SetPrimaryAccountNumber(Aws::String&& value) { m_primaryAccountNumberHasBeenSet = true; m_primaryAccountNumber = std::move(value); }
104 inline void SetPrimaryAccountNumber(const char* value) { m_primaryAccountNumberHasBeenSet = true; m_primaryAccountNumber.assign(value); }
106 inline VerifyPinDataRequest& WithPrimaryAccountNumber(Aws::String&& value) { SetPrimaryAccountNumber(std::move(value)); return *this;}
107 inline VerifyPinDataRequest& WithPrimaryAccountNumber(const char* value) { SetPrimaryAccountNumber(value); return *this;}
109
111
121 inline const PinBlockFormatForPinData& GetPinBlockFormat() const{ return m_pinBlockFormat; }
122 inline bool PinBlockFormatHasBeenSet() const { return m_pinBlockFormatHasBeenSet; }
123 inline void SetPinBlockFormat(const PinBlockFormatForPinData& value) { m_pinBlockFormatHasBeenSet = true; m_pinBlockFormat = value; }
124 inline void SetPinBlockFormat(PinBlockFormatForPinData&& value) { m_pinBlockFormatHasBeenSet = true; m_pinBlockFormat = std::move(value); }
126 inline VerifyPinDataRequest& WithPinBlockFormat(PinBlockFormatForPinData&& value) { SetPinBlockFormat(std::move(value)); return *this;}
128
130
133 inline int GetPinDataLength() const{ return m_pinDataLength; }
134 inline bool PinDataLengthHasBeenSet() const { return m_pinDataLengthHasBeenSet; }
135 inline void SetPinDataLength(int value) { m_pinDataLengthHasBeenSet = true; m_pinDataLength = value; }
136 inline VerifyPinDataRequest& WithPinDataLength(int value) { SetPinDataLength(value); return *this;}
138
140
143 inline const DukptAttributes& GetDukptAttributes() const{ return m_dukptAttributes; }
144 inline bool DukptAttributesHasBeenSet() const { return m_dukptAttributesHasBeenSet; }
145 inline void SetDukptAttributes(const DukptAttributes& value) { m_dukptAttributesHasBeenSet = true; m_dukptAttributes = value; }
146 inline void SetDukptAttributes(DukptAttributes&& value) { m_dukptAttributesHasBeenSet = true; m_dukptAttributes = std::move(value); }
147 inline VerifyPinDataRequest& WithDukptAttributes(const DukptAttributes& value) { SetDukptAttributes(value); return *this;}
148 inline VerifyPinDataRequest& WithDukptAttributes(DukptAttributes&& value) { SetDukptAttributes(std::move(value)); return *this;}
150
152
153 inline const WrappedKey& GetEncryptionWrappedKey() const{ return m_encryptionWrappedKey; }
154 inline bool EncryptionWrappedKeyHasBeenSet() const { return m_encryptionWrappedKeyHasBeenSet; }
155 inline void SetEncryptionWrappedKey(const WrappedKey& value) { m_encryptionWrappedKeyHasBeenSet = true; m_encryptionWrappedKey = value; }
156 inline void SetEncryptionWrappedKey(WrappedKey&& value) { m_encryptionWrappedKeyHasBeenSet = true; m_encryptionWrappedKey = std::move(value); }
158 inline VerifyPinDataRequest& WithEncryptionWrappedKey(WrappedKey&& value) { SetEncryptionWrappedKey(std::move(value)); return *this;}
160 private:
161
162 Aws::String m_verificationKeyIdentifier;
163 bool m_verificationKeyIdentifierHasBeenSet = false;
164
165 Aws::String m_encryptionKeyIdentifier;
166 bool m_encryptionKeyIdentifierHasBeenSet = false;
167
168 PinVerificationAttributes m_verificationAttributes;
169 bool m_verificationAttributesHasBeenSet = false;
170
171 Aws::String m_encryptedPinBlock;
172 bool m_encryptedPinBlockHasBeenSet = false;
173
174 Aws::String m_primaryAccountNumber;
175 bool m_primaryAccountNumberHasBeenSet = false;
176
177 PinBlockFormatForPinData m_pinBlockFormat;
178 bool m_pinBlockFormatHasBeenSet = false;
179
180 int m_pinDataLength;
181 bool m_pinDataLengthHasBeenSet = false;
182
183 DukptAttributes m_dukptAttributes;
184 bool m_dukptAttributesHasBeenSet = false;
185
186 WrappedKey m_encryptionWrappedKey;
187 bool m_encryptionWrappedKeyHasBeenSet = false;
188 };
189
190} // namespace Model
191} // namespace PaymentCryptographyData
192} // namespace Aws
void SetVerificationAttributes(const PinVerificationAttributes &value)
void SetPinBlockFormat(const PinBlockFormatForPinData &value)
VerifyPinDataRequest & WithPrimaryAccountNumber(const char *value)
VerifyPinDataRequest & WithEncryptedPinBlock(Aws::String &&value)
VerifyPinDataRequest & WithPinBlockFormat(const PinBlockFormatForPinData &value)
AWS_PAYMENTCRYPTOGRAPHYDATA_API VerifyPinDataRequest()
VerifyPinDataRequest & WithDukptAttributes(DukptAttributes &&value)
VerifyPinDataRequest & WithEncryptionWrappedKey(WrappedKey &&value)
VerifyPinDataRequest & WithVerificationAttributes(PinVerificationAttributes &&value)
virtual const char * GetServiceRequestName() const override
VerifyPinDataRequest & WithVerificationKeyIdentifier(const Aws::String &value)
VerifyPinDataRequest & WithVerificationKeyIdentifier(const char *value)
VerifyPinDataRequest & WithPrimaryAccountNumber(const Aws::String &value)
AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::String SerializePayload() const override
VerifyPinDataRequest & WithVerificationKeyIdentifier(Aws::String &&value)
VerifyPinDataRequest & WithVerificationAttributes(const PinVerificationAttributes &value)
const PinVerificationAttributes & GetVerificationAttributes() const
const PinBlockFormatForPinData & GetPinBlockFormat() const
void SetVerificationAttributes(PinVerificationAttributes &&value)
VerifyPinDataRequest & WithPinBlockFormat(PinBlockFormatForPinData &&value)
VerifyPinDataRequest & WithEncryptionKeyIdentifier(const Aws::String &value)
VerifyPinDataRequest & WithEncryptionWrappedKey(const WrappedKey &value)
VerifyPinDataRequest & WithEncryptedPinBlock(const char *value)
VerifyPinDataRequest & WithDukptAttributes(const DukptAttributes &value)
VerifyPinDataRequest & WithPrimaryAccountNumber(Aws::String &&value)
VerifyPinDataRequest & WithEncryptedPinBlock(const Aws::String &value)
VerifyPinDataRequest & WithEncryptionKeyIdentifier(const char *value)
VerifyPinDataRequest & WithEncryptionKeyIdentifier(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String