This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-snowball/include/aws/snowball/model/TaxDocuments.h

67 lines
1.5 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/snowball/Snowball_EXPORTS.h>
#include <aws/snowball/model/INDTaxDocuments.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Snowball
{
namespace Model
{
/**
* <p>The tax documents required in your AWS Region.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/snowball-2016-06-30/TaxDocuments">AWS
* API Reference</a></p>
*/
class AWS_SNOWBALL_API TaxDocuments
{
public:
TaxDocuments();
TaxDocuments(Aws::Utils::Json::JsonView jsonValue);
TaxDocuments& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
inline const INDTaxDocuments& GetIND() const{ return m_iND; }
inline bool INDHasBeenSet() const { return m_iNDHasBeenSet; }
inline void SetIND(const INDTaxDocuments& value) { m_iNDHasBeenSet = true; m_iND = value; }
inline void SetIND(INDTaxDocuments&& value) { m_iNDHasBeenSet = true; m_iND = std::move(value); }
inline TaxDocuments& WithIND(const INDTaxDocuments& value) { SetIND(value); return *this;}
inline TaxDocuments& WithIND(INDTaxDocuments&& value) { SetIND(std::move(value)); return *this;}
private:
INDTaxDocuments m_iND;
bool m_iNDHasBeenSet;
};
} // namespace Model
} // namespace Snowball
} // namespace Aws