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

com.ingenico.connect.gateway.sdk.java.domain.refund.definitions.RefundCustomer Maven / Gradle / Ivy

/*
 * 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.refund.definitions;

import com.ingenico.connect.gateway.sdk.java.domain.definitions.CompanyInformation;
import com.ingenico.connect.gateway.sdk.java.domain.definitions.ContactDetailsBase;
import com.ingenico.connect.gateway.sdk.java.domain.payment.definitions.AddressPersonal;

public class RefundCustomer {

	private AddressPersonal address = null;

	private CompanyInformation companyInformation = null;

	private ContactDetailsBase contactDetails = null;

	private String fiscalNumber = null;

	/**
	 * Object containing address details
	 */
	public AddressPersonal getAddress() {
		return address;
	}

	/**
	 * Object containing address details
	 */
	public void setAddress(AddressPersonal value) {
		this.address = value;
	}

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

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

	/**
	 * Object containing contact details like email address and phone number
	 */
	public ContactDetailsBase getContactDetails() {
		return contactDetails;
	}

	/**
	 * Object containing contact details like email address and phone number
	 */
	public void setContactDetails(ContactDetailsBase value) {
		this.contactDetails = value;
	}

	/**
	 * The fiscal registration number of the customer or the tax registration number of the company in case of a business customer. Please find below specifics per country:
	 * 
    *
  • Argentina - Consumer (DNI) with a length of 7 or 8 digits *
  • Argentina - Company (CUIT) with a length of 11 digits *
  • Brazil - Consumer (CPF) with a length of 11 digits *
  • Brazil - Company (CNPJ) with a length of 14 digits *
  • Chile - Consumer (RUT) with a length of 9 digits *
  • Colombia - Consumer (NIT) with a length of 8, 9 or 10 digits *
  • Denmark - Consumer (CPR-nummer or personnummer) with a length of 10 digits *
  • Dominican Republic - Consumer (RNC) with a length of 11 digits *
  • Finland - Consumer (Finnish: henkilötunnus (abbreviated as HETU)) with a length of 11 characters *
  • India - Consumer (PAN) with a length of 10 characters *
  • Mexico - Consumer (RFC) with a length of 13 digits *
  • Mexico - Company (RFC) with a length of 12 digits *
  • Norway - Consumer (fødselsnummer) with a length of 11 digits *
  • Peru - Consumer (RUC) with a length of 11 digits *
  • Sweden - Consumer (personnummer) with a length of 10 or 12 digits *
  • Uruguay - Consumer (CI) with a length of 8 digits *
  • Uruguay - Consumer (NIE) with a length of 9 digits *
  • Uruguay - Company (RUT) with a length of 12 digits *
*/ public String getFiscalNumber() { return fiscalNumber; } /** * The fiscal registration number of the customer or the tax registration number of the company in case of a business customer. Please find below specifics per country: *
    *
  • Argentina - Consumer (DNI) with a length of 7 or 8 digits *
  • Argentina - Company (CUIT) with a length of 11 digits *
  • Brazil - Consumer (CPF) with a length of 11 digits *
  • Brazil - Company (CNPJ) with a length of 14 digits *
  • Chile - Consumer (RUT) with a length of 9 digits *
  • Colombia - Consumer (NIT) with a length of 8, 9 or 10 digits *
  • Denmark - Consumer (CPR-nummer or personnummer) with a length of 10 digits *
  • Dominican Republic - Consumer (RNC) with a length of 11 digits *
  • Finland - Consumer (Finnish: henkilötunnus (abbreviated as HETU)) with a length of 11 characters *
  • India - Consumer (PAN) with a length of 10 characters *
  • Mexico - Consumer (RFC) with a length of 13 digits *
  • Mexico - Company (RFC) with a length of 12 digits *
  • Norway - Consumer (fødselsnummer) with a length of 11 digits *
  • Peru - Consumer (RUC) with a length of 11 digits *
  • Sweden - Consumer (personnummer) with a length of 10 or 12 digits *
  • Uruguay - Consumer (CI) with a length of 8 digits *
  • Uruguay - Consumer (NIE) with a length of 9 digits *
  • Uruguay - Company (RUT) with a length of 12 digits *
*/ public void setFiscalNumber(String value) { this.fiscalNumber = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy