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

com.ingenico.direct.domain.LoanRecipient 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 specific data regarding the recipient of a loan in the UK
 */
public class LoanRecipient {

	private String accountNumber = null;

	private String dateOfBirth = null;

	private String partialPan = null;

	private String surname = null;

	private String zip = null;

	/**
	 * Should be filled with the last 10 digits of the bank account number of the recipient of the loan.
	 */
	public String getAccountNumber() {
		return accountNumber;
	}

	/**
	 * Should be filled with the last 10 digits of the bank account number of the recipient of the loan.
	 */
	public void setAccountNumber(String value) {
		this.accountNumber = value;
	}

	/**
	 * The date of birth of the customer of the recipient of the loan.
	 * Format YYYYMMDD
	 */
	public String getDateOfBirth() {
		return dateOfBirth;
	}

	/**
	 * The date of birth of the customer of the recipient of the loan.
	 * Format YYYYMMDD
	 */
	public void setDateOfBirth(String value) {
		this.dateOfBirth = value;
	}

	/**
	 * Should be filled with the first 6 and last 4 digits of the PAN number of the recipient of the loan.
	 */
	public String getPartialPan() {
		return partialPan;
	}

	/**
	 * Should be filled with the first 6 and last 4 digits of the PAN number of the recipient of the loan.
	 */
	public void setPartialPan(String value) {
		this.partialPan = value;
	}

	/**
	 * Surname of the recipient of the loan.
	 */
	public String getSurname() {
		return surname;
	}

	/**
	 * Surname of the recipient of the loan.
	 */
	public void setSurname(String value) {
		this.surname = value;
	}

	/**
	 * Zip code of the recipient of the loan
	 */
	public String getZip() {
		return zip;
	}

	/**
	 * Zip code of the recipient of the loan
	 */
	public void setZip(String value) {
		this.zip = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy