/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the payment-cryptography-data-2022-02-03.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.PaymentCryptographyData.Model
{
///
/// Parameters that are required for ARPC response generation using method2 after ARQC
/// verification is successful.
///
public partial class CryptogramVerificationArpcMethod2
{
private string _cardStatusUpdate;
private string _proprietaryAuthenticationData;
///
/// Gets and sets the property CardStatusUpdate.
///
/// The data indicating whether the issuer approves or declines an online transaction
/// using an EMV chip card.
///
///
[AWSProperty(Required=true, Min=8, Max=8)]
public string CardStatusUpdate
{
get { return this._cardStatusUpdate; }
set { this._cardStatusUpdate = value; }
}
// Check to see if CardStatusUpdate property is set
internal bool IsSetCardStatusUpdate()
{
return this._cardStatusUpdate != null;
}
///
/// Gets and sets the property ProprietaryAuthenticationData.
///
/// The proprietary authentication data used by issuer for communication during online
/// transaction using an EMV chip card.
///
///
[AWSProperty(Min=1, Max=16)]
public string ProprietaryAuthenticationData
{
get { return this._proprietaryAuthenticationData; }
set { this._proprietaryAuthenticationData = value; }
}
// Check to see if ProprietaryAuthenticationData property is set
internal bool IsSetProprietaryAuthenticationData()
{
return this._proprietaryAuthenticationData != null;
}
}
}