AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetTaxRegistrationDocumentRequest.h
1
6#pragma once
7#include <aws/taxsettings/TaxSettings_EXPORTS.h>
8#include <aws/taxsettings/TaxSettingsRequest.h>
9#include <aws/taxsettings/model/DestinationS3Location.h>
10#include <aws/taxsettings/model/TaxDocumentMetadata.h>
11#include <utility>
12
13namespace Aws
14{
15namespace TaxSettings
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_TAXSETTINGS_API GetTaxRegistrationDocumentRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetTaxRegistrationDocument"; }
32
33 AWS_TAXSETTINGS_API Aws::String SerializePayload() const override;
34
35
37
40 inline const DestinationS3Location& GetDestinationS3Location() const{ return m_destinationS3Location; }
41 inline bool DestinationS3LocationHasBeenSet() const { return m_destinationS3LocationHasBeenSet; }
42 inline void SetDestinationS3Location(const DestinationS3Location& value) { m_destinationS3LocationHasBeenSet = true; m_destinationS3Location = value; }
43 inline void SetDestinationS3Location(DestinationS3Location&& value) { m_destinationS3LocationHasBeenSet = true; m_destinationS3Location = std::move(value); }
47
49
52 inline const TaxDocumentMetadata& GetTaxDocumentMetadata() const{ return m_taxDocumentMetadata; }
53 inline bool TaxDocumentMetadataHasBeenSet() const { return m_taxDocumentMetadataHasBeenSet; }
54 inline void SetTaxDocumentMetadata(const TaxDocumentMetadata& value) { m_taxDocumentMetadataHasBeenSet = true; m_taxDocumentMetadata = value; }
55 inline void SetTaxDocumentMetadata(TaxDocumentMetadata&& value) { m_taxDocumentMetadataHasBeenSet = true; m_taxDocumentMetadata = std::move(value); }
59 private:
60
61 DestinationS3Location m_destinationS3Location;
62 bool m_destinationS3LocationHasBeenSet = false;
63
64 TaxDocumentMetadata m_taxDocumentMetadata;
65 bool m_taxDocumentMetadataHasBeenSet = false;
66 };
67
68} // namespace Model
69} // namespace TaxSettings
70} // namespace Aws
GetTaxRegistrationDocumentRequest & WithTaxDocumentMetadata(const TaxDocumentMetadata &value)
GetTaxRegistrationDocumentRequest & WithDestinationS3Location(DestinationS3Location &&value)
AWS_TAXSETTINGS_API Aws::String SerializePayload() const override
GetTaxRegistrationDocumentRequest & WithDestinationS3Location(const DestinationS3Location &value)
GetTaxRegistrationDocumentRequest & WithTaxDocumentMetadata(TaxDocumentMetadata &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String