AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
VerificationDetails.h
1
6#pragma once
7#include <aws/taxsettings/TaxSettings_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/taxsettings/model/TaxRegistrationDocument.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace TaxSettings
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_TAXSETTINGS_API VerificationDetails() = default;
37 AWS_TAXSETTINGS_API VerificationDetails(Aws::Utils::Json::JsonView jsonValue);
39 AWS_TAXSETTINGS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetDateOfBirth() const { return m_dateOfBirth; }
48 inline bool DateOfBirthHasBeenSet() const { return m_dateOfBirthHasBeenSet; }
49 template<typename DateOfBirthT = Aws::String>
50 void SetDateOfBirth(DateOfBirthT&& value) { m_dateOfBirthHasBeenSet = true; m_dateOfBirth = std::forward<DateOfBirthT>(value); }
51 template<typename DateOfBirthT = Aws::String>
52 VerificationDetails& WithDateOfBirth(DateOfBirthT&& value) { SetDateOfBirth(std::forward<DateOfBirthT>(value)); return *this;}
54
56
60 inline const Aws::Vector<TaxRegistrationDocument>& GetTaxRegistrationDocuments() const { return m_taxRegistrationDocuments; }
61 inline bool TaxRegistrationDocumentsHasBeenSet() const { return m_taxRegistrationDocumentsHasBeenSet; }
62 template<typename TaxRegistrationDocumentsT = Aws::Vector<TaxRegistrationDocument>>
63 void SetTaxRegistrationDocuments(TaxRegistrationDocumentsT&& value) { m_taxRegistrationDocumentsHasBeenSet = true; m_taxRegistrationDocuments = std::forward<TaxRegistrationDocumentsT>(value); }
64 template<typename TaxRegistrationDocumentsT = Aws::Vector<TaxRegistrationDocument>>
65 VerificationDetails& WithTaxRegistrationDocuments(TaxRegistrationDocumentsT&& value) { SetTaxRegistrationDocuments(std::forward<TaxRegistrationDocumentsT>(value)); return *this;}
66 template<typename TaxRegistrationDocumentsT = TaxRegistrationDocument>
67 VerificationDetails& AddTaxRegistrationDocuments(TaxRegistrationDocumentsT&& value) { m_taxRegistrationDocumentsHasBeenSet = true; m_taxRegistrationDocuments.emplace_back(std::forward<TaxRegistrationDocumentsT>(value)); return *this; }
69 private:
70
71 Aws::String m_dateOfBirth;
72 bool m_dateOfBirthHasBeenSet = false;
73
74 Aws::Vector<TaxRegistrationDocument> m_taxRegistrationDocuments;
75 bool m_taxRegistrationDocumentsHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace TaxSettings
80} // namespace Aws
const Aws::Vector< TaxRegistrationDocument > & GetTaxRegistrationDocuments() const
AWS_TAXSETTINGS_API Aws::Utils::Json::JsonValue Jsonize() const
VerificationDetails & WithDateOfBirth(DateOfBirthT &&value)
AWS_TAXSETTINGS_API VerificationDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
VerificationDetails & AddTaxRegistrationDocuments(TaxRegistrationDocumentsT &&value)
AWS_TAXSETTINGS_API VerificationDetails()=default
VerificationDetails & WithTaxRegistrationDocuments(TaxRegistrationDocumentsT &&value)
AWS_TAXSETTINGS_API VerificationDetails(Aws::Utils::Json::JsonView jsonValue)
void SetTaxRegistrationDocuments(TaxRegistrationDocumentsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue