AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
VerificationFailedException.h
1
6#pragma once
7#include <aws/payment-cryptography-data/PaymentCryptographyData_EXPORTS.h>
8#include <aws/payment-cryptography-data/model/VerificationFailedReason.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace PaymentCryptographyData
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_PAYMENTCRYPTOGRAPHYDATA_API VerificationFailedException();
36 AWS_PAYMENTCRYPTOGRAPHYDATA_API VerificationFailedException(Aws::Utils::Json::JsonView jsonValue);
37 AWS_PAYMENTCRYPTOGRAPHYDATA_API VerificationFailedException& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const VerificationFailedReason& GetReason() const{ return m_reason; }
46 inline bool ReasonHasBeenSet() const { return m_reasonHasBeenSet; }
47 inline void SetReason(const VerificationFailedReason& value) { m_reasonHasBeenSet = true; m_reason = value; }
48 inline void SetReason(VerificationFailedReason&& value) { m_reasonHasBeenSet = true; m_reason = std::move(value); }
49 inline VerificationFailedException& WithReason(const VerificationFailedReason& value) { SetReason(value); return *this;}
50 inline VerificationFailedException& WithReason(VerificationFailedReason&& value) { SetReason(std::move(value)); return *this;}
52
54
55 inline const Aws::String& GetMessage() const{ return m_message; }
56 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
57 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
58 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
59 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
60 inline VerificationFailedException& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
61 inline VerificationFailedException& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
62 inline VerificationFailedException& WithMessage(const char* value) { SetMessage(value); return *this;}
64 private:
65
67 bool m_reasonHasBeenSet = false;
68
69 Aws::String m_message;
70 bool m_messageHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace PaymentCryptographyData
75} // namespace Aws
AWS_PAYMENTCRYPTOGRAPHYDATA_API Aws::Utils::Json::JsonValue Jsonize() const
VerificationFailedException & WithReason(VerificationFailedReason &&value)
VerificationFailedException & WithMessage(const Aws::String &value)
VerificationFailedException & WithReason(const VerificationFailedReason &value)
AWS_PAYMENTCRYPTOGRAPHYDATA_API VerificationFailedException(Aws::Utils::Json::JsonView jsonValue)
VerificationFailedException & WithMessage(Aws::String &&value)
AWS_PAYMENTCRYPTOGRAPHYDATA_API VerificationFailedException & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue