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

com.ingenico.direct.domain.CustomerToken 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;

public class CustomerToken {

	private Address billingAddress = null;

	private CompanyInformation companyInformation = null;

	private PersonalInformationToken personalInformation = null;

	/**
	 * Object containing billing address details
	 */
	public Address getBillingAddress() {
		return billingAddress;
	}

	/**
	 * Object containing billing address details
	 */
	public void setBillingAddress(Address value) {
		this.billingAddress = value;
	}

	/**
	 * Object containing company information
	 */
	public CompanyInformation getCompanyInformation() {
		return companyInformation;
	}

	/**
	 * Object containing company information
	 */
	public void setCompanyInformation(CompanyInformation value) {
		this.companyInformation = value;
	}

	public PersonalInformationToken getPersonalInformation() {
		return personalInformation;
	}

	public void setPersonalInformation(PersonalInformationToken value) {
		this.personalInformation = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy