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

com.hps.integrator.applepay.ecv1.PaymentData3DS Maven / Gradle / Ivy

Go to download

The SecureSubmit Java SDK simplifies processing of credit card transactions using Heartland Payment Systems' Portico Payment Gateway

There is a newer version: v2.5.2
Show newest version
package com.hps.integrator.applepay.ecv1;

public class PaymentData3DS
{
    // 
    private String mOnlinePaymentCryptogram;

    private String mPaymentDataType = "3DSecure";

    private String mEciIndicator = "";
    // 

    public PaymentData3DS(String onlinePaymentCryptogram, String eciIndicator)
    {
        mOnlinePaymentCryptogram = onlinePaymentCryptogram;
        mEciIndicator = eciIndicator;
    }

    public PaymentData3DS(String onlinePaymentCryptogram, String eciIndicator, String paymentDataType)
    {
        mOnlinePaymentCryptogram = onlinePaymentCryptogram;
        mEciIndicator = eciIndicator;
        mPaymentDataType = paymentDataType;
    }

    public String getOnlinePaymentCryptogram()
    {
        return this.mOnlinePaymentCryptogram;
    }

    public String getPaymentDataTye()
    {
        return mPaymentDataType;
    }

    public String getEciIndicator() {
        return mEciIndicator;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy