All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy