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

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

/**
 * Output for the retrieval of a customer's details.
 */
public class GetCustomerDetailsResponse {

	private String city = null;

	private String country = null;

	private String emailAddress = null;

	private String firstName = null;

	private String fiscalNumber = null;

	private String languageCode = null;

	private String phoneNumber = null;

	private String street = null;

	private String surname = null;

	private String zip = null;

	/**
	 * The city in which the customer resides.
	 */
	public String getCity() {
		return city;
	}

	/**
	 * The city in which the customer resides.
	 */
	public void setCity(String value) {
		this.city = value;
	}

	/**
	 * The country in which the customer resides.
	 */
	public String getCountry() {
		return country;
	}

	/**
	 * The country in which the customer resides.
	 */
	public void setCountry(String value) {
		this.country = value;
	}

	/**
	 * The email address registered to the customer.
	 */
	public String getEmailAddress() {
		return emailAddress;
	}

	/**
	 * The email address registered to the customer.
	 */
	public void setEmailAddress(String value) {
		this.emailAddress = value;
	}

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

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

	/**
	 * The fiscal number (SSN) for the customer.
	 */
	public String getFiscalNumber() {
		return fiscalNumber;
	}

	/**
	 * The fiscal number (SSN) for the customer.
	 */
	public void setFiscalNumber(String value) {
		this.fiscalNumber = value;
	}

	/**
	 * The code of the language used by the customer.
	 */
	public String getLanguageCode() {
		return languageCode;
	}

	/**
	 * The code of the language used by the customer.
	 */
	public void setLanguageCode(String value) {
		this.languageCode = value;
	}

	/**
	 * The phone number registered to the customer.
	 */
	public String getPhoneNumber() {
		return phoneNumber;
	}

	/**
	 * The phone number registered to the customer.
	 */
	public void setPhoneNumber(String value) {
		this.phoneNumber = value;
	}

	/**
	 * The street on which the customer resides.
	 */
	public String getStreet() {
		return street;
	}

	/**
	 * The street on which the customer resides.
	 */
	public void setStreet(String value) {
		this.street = value;
	}

	/**
	 * The surname or family name of the customer.
	 */
	public String getSurname() {
		return surname;
	}

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

	/**
	 * The ZIP or postal code for the area in which the customer resides.
	 */
	public String getZip() {
		return zip;
	}

	/**
	 * The ZIP or postal code for the area in which the customer resides.
	 */
	public void setZip(String value) {
		this.zip = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy