AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
VisaPinVerificationValue.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/payment-cryptography-data/PaymentCryptographyData_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace PaymentCryptographyData {
20namespace Model {
21
29 public:
30 AWS_PAYMENTCRYPTOGRAPHYDATA_API VisaPinVerificationValue() = default;
31 AWS_PAYMENTCRYPTOGRAPHYDATA_API VisaPinVerificationValue(Aws::Utils::Json::JsonView jsonValue);
32 AWS_PAYMENTCRYPTOGRAPHYDATA_API VisaPinVerificationValue& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetEncryptedPinBlock() const { return m_encryptedPinBlock; }
40 inline bool EncryptedPinBlockHasBeenSet() const { return m_encryptedPinBlockHasBeenSet; }
41 template <typename EncryptedPinBlockT = Aws::String>
42 void SetEncryptedPinBlock(EncryptedPinBlockT&& value) {
43 m_encryptedPinBlockHasBeenSet = true;
44 m_encryptedPinBlock = std::forward<EncryptedPinBlockT>(value);
45 }
46 template <typename EncryptedPinBlockT = Aws::String>
47 VisaPinVerificationValue& WithEncryptedPinBlock(EncryptedPinBlockT&& value) {
48 SetEncryptedPinBlock(std::forward<EncryptedPinBlockT>(value));
49 return *this;
50 }
52
54
58 inline int GetPinVerificationKeyIndex() const { return m_pinVerificationKeyIndex; }
59 inline bool PinVerificationKeyIndexHasBeenSet() const { return m_pinVerificationKeyIndexHasBeenSet; }
60 inline void SetPinVerificationKeyIndex(int value) {
61 m_pinVerificationKeyIndexHasBeenSet = true;
62 m_pinVerificationKeyIndex = value;
63 }
66 return *this;
67 }
69 private:
70 Aws::String m_encryptedPinBlock;
71
72 int m_pinVerificationKeyIndex{0};
73 bool m_encryptedPinBlockHasBeenSet = false;
74 bool m_pinVerificationKeyIndexHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace PaymentCryptographyData
79} // namespace Aws
AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_PAYMENTCRYPTOGRAPHYDATA_API VisaPinVerificationValue()=default
AWS_PAYMENTCRYPTOGRAPHYDATA_API VisaPinVerificationValue(Aws::Utils::Json::JsonView jsonValue)
AWS_PAYMENTCRYPTOGRAPHYDATA_API VisaPinVerificationValue & operator=(Aws::Utils::Json::JsonView jsonValue)
VisaPinVerificationValue & WithEncryptedPinBlock(EncryptedPinBlockT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue