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

com.ingenico.direct.domain.FraudFields 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 additional data that will be used to assess the risk of fraud
 */
public class FraudFields {

	private String blackListData = null;

	private String customerIpAddress = null;

	/**
	 * Additional black list input
	 */
	public String getBlackListData() {
		return blackListData;
	}

	/**
	 * Additional black list input
	 */
	public void setBlackListData(String value) {
		this.blackListData = value;
	}

	/**
	 * The IP Address of the customer that is making the payment
	 */
	public String getCustomerIpAddress() {
		return customerIpAddress;
	}

	/**
	 * The IP Address of the customer that is making the payment
	 */
	public void setCustomerIpAddress(String value) {
		this.customerIpAddress = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy