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

com.ingenico.direct.domain.FraudResults 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;

/**
 * Object containing the results of the fraud screening
 */
public class FraudResults {

	private String fraudServiceResult = null;

	/**
	 * Resulting advice of the fraud prevention checks. Possible values are:
	 * * accepted - Based on the checks performed the transaction can be accepted
	 * * challenged - Based on the checks performed the transaction should be manually reviewed
	 * * denied - Based on the checks performed the transaction should be rejected
	 * * no-advice - No fraud check was requested/performed
	 * * error - The fraud check resulted an error. Note that the fraud check was thus not performed.
	 */
	public String getFraudServiceResult() {
		return fraudServiceResult;
	}

	/**
	 * Resulting advice of the fraud prevention checks. Possible values are:
	 * * accepted - Based on the checks performed the transaction can be accepted
	 * * challenged - Based on the checks performed the transaction should be manually reviewed
	 * * denied - Based on the checks performed the transaction should be rejected
	 * * no-advice - No fraud check was requested/performed
	 * * error - The fraud check resulted an error. Note that the fraud check was thus not performed.
	 */
	public void setFraudServiceResult(String value) {
		this.fraudServiceResult = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy