/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Parameters for plaintext encryption using asymmetric keys.See
* Also:
AWS
* API Reference
The padding to be included with the data.
*/ inline const PaddingType& GetPaddingType() const{ return m_paddingType; } /** *The padding to be included with the data.
*/ inline bool PaddingTypeHasBeenSet() const { return m_paddingTypeHasBeenSet; } /** *The padding to be included with the data.
*/ inline void SetPaddingType(const PaddingType& value) { m_paddingTypeHasBeenSet = true; m_paddingType = value; } /** *The padding to be included with the data.
*/ inline void SetPaddingType(PaddingType&& value) { m_paddingTypeHasBeenSet = true; m_paddingType = std::move(value); } /** *The padding to be included with the data.
*/ inline AsymmetricEncryptionAttributes& WithPaddingType(const PaddingType& value) { SetPaddingType(value); return *this;} /** *The padding to be included with the data.
*/ inline AsymmetricEncryptionAttributes& WithPaddingType(PaddingType&& value) { SetPaddingType(std::move(value)); return *this;} private: PaddingType m_paddingType; bool m_paddingTypeHasBeenSet = false; }; } // namespace Model } // namespace PaymentCryptographyData } // namespace Aws