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

com.ingenico.direct.domain.PersonalName 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 the name details of the customer
 */
public class PersonalName {

	private String firstName = null;

	private String surname = null;

	private String title = null;

	/**
	 * Given name(s) or first name(s) of the customer
	 */
	public String getFirstName() {
		return firstName;
	}

	/**
	 * Given name(s) or first name(s) of the customer
	 */
	public void setFirstName(String value) {
		this.firstName = value;
	}

	/**
	 * Surname(s) or last name(s) of the customer
	 */
	public String getSurname() {
		return surname;
	}

	/**
	 * Surname(s) or last name(s) of the customer
	 */
	public void setSurname(String value) {
		this.surname = value;
	}

	/**
	 * Title of customer
	 */
	public String getTitle() {
		return title;
	}

	/**
	 * Title of customer
	 */
	public void setTitle(String value) {
		this.title = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy