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

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

public class AirlinePassenger {

	private String firstName = null;

	private String surname = null;

	private String surnamePrefix = null;

	private String title = null;

	/**
	 * First name of the passenger (this property is used for fraud screening on the Ogone Payment Platform)
	 */
	public String getFirstName() {
		return firstName;
	}

	/**
	 * First name of the passenger (this property is used for fraud screening on the Ogone Payment Platform)
	 */
	public void setFirstName(String value) {
		this.firstName = value;
	}

	/**
	 * Surname of the passenger (this property is used for fraud screening on the Ogone Payment Platform)
	 */
	public String getSurname() {
		return surname;
	}

	/**
	 * Surname of the passenger (this property is used for fraud screening on the Ogone Payment Platform)
	 */
	public void setSurname(String value) {
		this.surname = value;
	}

	/**
	 * Surname prefix of the passenger (this property is used for fraud screening on the Ogone Payment Platform)
	 */
	public String getSurnamePrefix() {
		return surnamePrefix;
	}

	/**
	 * Surname prefix of the passenger (this property is used for fraud screening on the Ogone Payment Platform)
	 */
	public void setSurnamePrefix(String value) {
		this.surnamePrefix = value;
	}

	/**
	 * Title of the passenger (this property is used for fraud screening on the Ogone Payment Platform)
	 */
	public String getTitle() {
		return title;
	}

	/**
	 * Title of the passenger (this property is used for fraud screening on the Ogone Payment Platform)
	 */
	public void setTitle(String value) {
		this.title = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy