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

com.ingenico.direct.domain.ThreeDSecureResults Maven / Gradle / Ivy

/*
 * This class was auto-generated from the API references found at
 * https://support.direct.ingenico.com/documentation/api/reference
 */
package com.ingenico.direct.domain;

/**
 * 3D Secure results object
 */
public class ThreeDSecureResults {

	private String eci = null;

	private String xid = null;

	/**
	 * Indicates Authentication validation results returned after AuthenticationValidation
	 */
	public String getEci() {
		return eci;
	}

	/**
	 * Indicates Authentication validation results returned after AuthenticationValidation
	 */
	public void setEci(String value) {
		this.eci = value;
	}

	/**
	 * Transaction ID for the Authentication
	 */
	public String getXid() {
		return xid;
	}

	/**
	 * Transaction ID for the Authentication
	 */
	public void setXid(String value) {
		this.xid = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy