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

com.ingenico.direct.domain.PaymentAccountOnFile 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 information on the payment account data on file (tokens)
 */
public class PaymentAccountOnFile {

	private String createDate = null;

	private Integer numberOfCardOnFileCreationAttemptsLast24Hours = null;

	/**
	 * The date (YYYYMMDD) when the payment account on file was first created.
	 * 
	 * In case a token is used for the transaction we will use the creation date of the token in our system in case you leave this property empty.
	 */
	public String getCreateDate() {
		return createDate;
	}

	/**
	 * The date (YYYYMMDD) when the payment account on file was first created.
	 * 
	 * In case a token is used for the transaction we will use the creation date of the token in our system in case you leave this property empty.
	 */
	public void setCreateDate(String value) {
		this.createDate = value;
	}

	/**
	 * Number of attempts made to add new card to the customer account in the last 24 hours
	 */
	public Integer getNumberOfCardOnFileCreationAttemptsLast24Hours() {
		return numberOfCardOnFileCreationAttemptsLast24Hours;
	}

	/**
	 * Number of attempts made to add new card to the customer account in the last 24 hours
	 */
	public void setNumberOfCardOnFileCreationAttemptsLast24Hours(Integer value) {
		this.numberOfCardOnFileCreationAttemptsLast24Hours = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy