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

com.ingenico.connect.gateway.sdk.java.domain.payment.DeviceFingerprintDetails 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.payment;

public class DeviceFingerprintDetails {

	private String paymentId = null;

	private String rawDeviceFingerprintOutput = null;

	/**
	 * The ID of the payment that is linked to the Device Fingerprint data.
	 */
	public String getPaymentId() {
		return paymentId;
	}

	/**
	 * The ID of the payment that is linked to the Device Fingerprint data.
	 */
	public void setPaymentId(String value) {
		this.paymentId = value;
	}

	/**
	 * The detailed data that was collected during the Device Fingerprint collection. The structure will be different depending on the collection method and device fingerprint partner used. Please contact us if you want more information on the details that are returned in this string.
	 */
	public String getRawDeviceFingerprintOutput() {
		return rawDeviceFingerprintOutput;
	}

	/**
	 * The detailed data that was collected during the Device Fingerprint collection. The structure will be different depending on the collection method and device fingerprint partner used. Please contact us if you want more information on the details that are returned in this string.
	 */
	public void setRawDeviceFingerprintOutput(String value) {
		this.rawDeviceFingerprintOutput = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy