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

com.ingenico.connect.gateway.sdk.java.domain.definitions.RetailDecisionsCCFraudCheckOutput Maven / Gradle / Ivy

Go to download

SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API

There is a newer version: 6.47.0
Show newest version
/*
 * This class was auto-generated from the API references found at
 * https://epayments-api.developer-ingenico.com/s2sapi/v1/
 */
package com.ingenico.connect.gateway.sdk.java.domain.definitions;

public class RetailDecisionsCCFraudCheckOutput {

	private String fraudCode = null;

	private String fraudNeural = null;

	private String fraudRCF = null;

	/**
	 * Provides additional information about the fraud result
	 */
	public String getFraudCode() {
		return fraudCode;
	}

	/**
	 * Provides additional information about the fraud result
	 */
	public void setFraudCode(String value) {
		this.fraudCode = value;
	}

	/**
	 * The raw score returned by the Neural check returned by the evaluation of the transaction
	 */
	public String getFraudNeural() {
		return fraudNeural;
	}

	/**
	 * The raw score returned by the Neural check returned by the evaluation of the transaction
	 */
	public void setFraudNeural(String value) {
		this.fraudNeural = value;
	}

	/**
	 * List of RuleCategoryFlags as setup in the Retail Decisions system that lead to the result
	 */
	public String getFraudRCF() {
		return fraudRCF;
	}

	/**
	 * List of RuleCategoryFlags as setup in the Retail Decisions system that lead to the result
	 */
	public void setFraudRCF(String value) {
		this.fraudRCF = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy