/**
* 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 Visa PIN.See
* Also:
AWS
* API Reference
The value for PIN verification index. It is used in the Visa PIN algorithm to * calculate the PVV (PIN Verification Value).
*/ inline int GetPinVerificationKeyIndex() const{ return m_pinVerificationKeyIndex; } /** *The value for PIN verification index. It is used in the Visa PIN algorithm to * calculate the PVV (PIN Verification Value).
*/ inline bool PinVerificationKeyIndexHasBeenSet() const { return m_pinVerificationKeyIndexHasBeenSet; } /** *The value for PIN verification index. It is used in the Visa PIN algorithm to * calculate the PVV (PIN Verification Value).
*/ inline void SetPinVerificationKeyIndex(int value) { m_pinVerificationKeyIndexHasBeenSet = true; m_pinVerificationKeyIndex = value; } /** *The value for PIN verification index. It is used in the Visa PIN algorithm to * calculate the PVV (PIN Verification Value).
*/ inline VisaPin& WithPinVerificationKeyIndex(int value) { SetPinVerificationKeyIndex(value); return *this;} private: int m_pinVerificationKeyIndex; bool m_pinVerificationKeyIndexHasBeenSet = false; }; } // namespace Model } // namespace PaymentCryptographyData } // namespace Aws