/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Parameters that are required to generate or verify Dynamic Card Verification
* Value (dCVV).See Also:
AWS
* API Reference
The transaction counter value that comes from the terminal.
*/ inline const Aws::String& GetApplicationTransactionCounter() const{ return m_applicationTransactionCounter; } /** *The transaction counter value that comes from the terminal.
*/ inline bool ApplicationTransactionCounterHasBeenSet() const { return m_applicationTransactionCounterHasBeenSet; } /** *The transaction counter value that comes from the terminal.
*/ inline void SetApplicationTransactionCounter(const Aws::String& value) { m_applicationTransactionCounterHasBeenSet = true; m_applicationTransactionCounter = value; } /** *The transaction counter value that comes from the terminal.
*/ inline void SetApplicationTransactionCounter(Aws::String&& value) { m_applicationTransactionCounterHasBeenSet = true; m_applicationTransactionCounter = std::move(value); } /** *The transaction counter value that comes from the terminal.
*/ inline void SetApplicationTransactionCounter(const char* value) { m_applicationTransactionCounterHasBeenSet = true; m_applicationTransactionCounter.assign(value); } /** *The transaction counter value that comes from the terminal.
*/ inline DynamicCardVerificationValue& WithApplicationTransactionCounter(const Aws::String& value) { SetApplicationTransactionCounter(value); return *this;} /** *The transaction counter value that comes from the terminal.
*/ inline DynamicCardVerificationValue& WithApplicationTransactionCounter(Aws::String&& value) { SetApplicationTransactionCounter(std::move(value)); return *this;} /** *The transaction counter value that comes from the terminal.
*/ inline DynamicCardVerificationValue& WithApplicationTransactionCounter(const char* value) { SetApplicationTransactionCounter(value); return *this;} /** *The expiry date of a payment card.
*/ inline const Aws::String& GetCardExpiryDate() const{ return m_cardExpiryDate; } /** *The expiry date of a payment card.
*/ inline bool CardExpiryDateHasBeenSet() const { return m_cardExpiryDateHasBeenSet; } /** *The expiry date of a payment card.
*/ inline void SetCardExpiryDate(const Aws::String& value) { m_cardExpiryDateHasBeenSet = true; m_cardExpiryDate = value; } /** *The expiry date of a payment card.
*/ inline void SetCardExpiryDate(Aws::String&& value) { m_cardExpiryDateHasBeenSet = true; m_cardExpiryDate = std::move(value); } /** *The expiry date of a payment card.
*/ inline void SetCardExpiryDate(const char* value) { m_cardExpiryDateHasBeenSet = true; m_cardExpiryDate.assign(value); } /** *The expiry date of a payment card.
*/ inline DynamicCardVerificationValue& WithCardExpiryDate(const Aws::String& value) { SetCardExpiryDate(value); return *this;} /** *The expiry date of a payment card.
*/ inline DynamicCardVerificationValue& WithCardExpiryDate(Aws::String&& value) { SetCardExpiryDate(std::move(value)); return *this;} /** *The expiry date of a payment card.
*/ inline DynamicCardVerificationValue& WithCardExpiryDate(const char* value) { SetCardExpiryDate(value); return *this;} /** *A number that identifies and differentiates payment cards with the same * Primary Account Number (PAN).
*/ inline const Aws::String& GetPanSequenceNumber() const{ return m_panSequenceNumber; } /** *A number that identifies and differentiates payment cards with the same * Primary Account Number (PAN).
*/ inline bool PanSequenceNumberHasBeenSet() const { return m_panSequenceNumberHasBeenSet; } /** *A number that identifies and differentiates payment cards with the same * Primary Account Number (PAN).
*/ inline void SetPanSequenceNumber(const Aws::String& value) { m_panSequenceNumberHasBeenSet = true; m_panSequenceNumber = value; } /** *A number that identifies and differentiates payment cards with the same * Primary Account Number (PAN).
*/ inline void SetPanSequenceNumber(Aws::String&& value) { m_panSequenceNumberHasBeenSet = true; m_panSequenceNumber = std::move(value); } /** *A number that identifies and differentiates payment cards with the same * Primary Account Number (PAN).
*/ inline void SetPanSequenceNumber(const char* value) { m_panSequenceNumberHasBeenSet = true; m_panSequenceNumber.assign(value); } /** *A number that identifies and differentiates payment cards with the same * Primary Account Number (PAN).
*/ inline DynamicCardVerificationValue& WithPanSequenceNumber(const Aws::String& value) { SetPanSequenceNumber(value); return *this;} /** *A number that identifies and differentiates payment cards with the same * Primary Account Number (PAN).
*/ inline DynamicCardVerificationValue& WithPanSequenceNumber(Aws::String&& value) { SetPanSequenceNumber(std::move(value)); return *this;} /** *A number that identifies and differentiates payment cards with the same * Primary Account Number (PAN).
*/ inline DynamicCardVerificationValue& WithPanSequenceNumber(const char* value) { SetPanSequenceNumber(value); return *this;} /** *The service code of the payment card. This is different from Card Security * Code (CSC).
*/ inline const Aws::String& GetServiceCode() const{ return m_serviceCode; } /** *The service code of the payment card. This is different from Card Security * Code (CSC).
*/ inline bool ServiceCodeHasBeenSet() const { return m_serviceCodeHasBeenSet; } /** *The service code of the payment card. This is different from Card Security * Code (CSC).
*/ inline void SetServiceCode(const Aws::String& value) { m_serviceCodeHasBeenSet = true; m_serviceCode = value; } /** *The service code of the payment card. This is different from Card Security * Code (CSC).
*/ inline void SetServiceCode(Aws::String&& value) { m_serviceCodeHasBeenSet = true; m_serviceCode = std::move(value); } /** *The service code of the payment card. This is different from Card Security * Code (CSC).
*/ inline void SetServiceCode(const char* value) { m_serviceCodeHasBeenSet = true; m_serviceCode.assign(value); } /** *The service code of the payment card. This is different from Card Security * Code (CSC).
*/ inline DynamicCardVerificationValue& WithServiceCode(const Aws::String& value) { SetServiceCode(value); return *this;} /** *The service code of the payment card. This is different from Card Security * Code (CSC).
*/ inline DynamicCardVerificationValue& WithServiceCode(Aws::String&& value) { SetServiceCode(std::move(value)); return *this;} /** *The service code of the payment card. This is different from Card Security * Code (CSC).
*/ inline DynamicCardVerificationValue& WithServiceCode(const char* value) { SetServiceCode(value); return *this;} private: Aws::String m_applicationTransactionCounter; bool m_applicationTransactionCounterHasBeenSet = false; Aws::String m_cardExpiryDate; bool m_cardExpiryDateHasBeenSet = false; Aws::String m_panSequenceNumber; bool m_panSequenceNumberHasBeenSet = false; Aws::String m_serviceCode; bool m_serviceCodeHasBeenSet = false; }; } // namespace Model } // namespace PaymentCryptographyData } // namespace Aws