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

com.ingenico.direct.domain.CustomerAccountAuthentication 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 data on the authentication used by the customer to access their account
 */
public class CustomerAccountAuthentication {

	private String method = null;

	private String utcTimestamp = null;

	/**
	 * Authentication used by the customer on your website
	 * Possible values are
	 *  * guest = no login occurred, customer is logged in as guest
	 *  * merchant-credentials = the customer logged in using credentials that are specific to you
	 *  * federated-id = the customer logged in using a federated ID
	 *  * issuer-credentials = the customer logged in using credentials from the card issuer (of the card used in this transaction)
	 *  * third-party-authentication = the customer logged in using third-party authentication
	 *  * fido-authentication = the customer logged in using a FIDO authenticator
	 */
	public String getMethod() {
		return method;
	}

	/**
	 * Authentication used by the customer on your website
	 * Possible values are
	 *  * guest = no login occurred, customer is logged in as guest
	 *  * merchant-credentials = the customer logged in using credentials that are specific to you
	 *  * federated-id = the customer logged in using a federated ID
	 *  * issuer-credentials = the customer logged in using credentials from the card issuer (of the card used in this transaction)
	 *  * third-party-authentication = the customer logged in using third-party authentication
	 *  * fido-authentication = the customer logged in using a FIDO authenticator
	 */
	public void setMethod(String value) {
		this.method = value;
	}

	/**
	 * Timestamp (YYYYMMDDHHmm) of the authentication of the customer to their account with you
	 */
	public String getUtcTimestamp() {
		return utcTimestamp;
	}

	/**
	 * Timestamp (YYYYMMDDHHmm) of the authentication of the customer to their account with you
	 */
	public void setUtcTimestamp(String value) {
		this.utcTimestamp = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy