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

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

/**
 * 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 : *
  • 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 : *
  • 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