com.hps.integrator.applepay.ecv1.PaymentData3DS Maven / Gradle / Ivy
package com.hps.integrator.applepay.ecv1;
public class PaymentData3DS
{
//
private String mOnlinePaymentCryptogram;
private String mPaymentDataType = "3DSecure";
//
public PaymentData3DS(String onlinePaymentCryptogram)
{
mOnlinePaymentCryptogram = onlinePaymentCryptogram;
}
public String getOnlinePaymentCryptogram()
{
return this.mOnlinePaymentCryptogram;
}
public String getPaymentDataTye()
{
return mPaymentDataType;
}
}