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

com.ingenico.connect.gateway.sdk.java.domain.riskassessments.definitions.CustomerDeviceRiskAssessment 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.riskassessments.definitions;

/**
 * Object containing information on the device and browser of the customer
 */
public class CustomerDeviceRiskAssessment {

	private String defaultFormFill = null;

	private String deviceFingerprintTransactionId = null;

	/**
	 * Degree of default form fill, with the following possible values:
	 * 
    *
  • automatically - All fields filled automatically *
  • automatically-but-modified - All fields filled automatically, but some fields were modified manually *
  • manually - All fields were entered manually *
*/ public String getDefaultFormFill() { return defaultFormFill; } /** * Degree of default form fill, with the following possible values: *
    *
  • automatically - All fields filled automatically *
  • automatically-but-modified - All fields filled automatically, but some fields were modified manually *
  • manually - All fields were entered manually *
*/ public void setDefaultFormFill(String value) { this.defaultFormFill = value; } /** * One must set the deviceFingerprintTransactionId received by the response of the endpoint /{merchant}/products/{paymentProductId}/deviceFingerprint */ public String getDeviceFingerprintTransactionId() { return deviceFingerprintTransactionId; } /** * One must set the deviceFingerprintTransactionId received by the response of the endpoint /{merchant}/products/{paymentProductId}/deviceFingerprint */ public void setDeviceFingerprintTransactionId(String value) { this.deviceFingerprintTransactionId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy