Interface BillingSetter
-
- All Known Subinterfaces:
AlipaySaleTransaction
,BoletoSaleTransaction
,CCCreditTransaction
,CCForceTicketTransaction
,CCPayerAuthTransaction
,CCPreAuthTransaction
,CCSaleTransaction
,CUPDomesticSaleTransaction
,CustomerCForceTicketTransaction
,CustomerCSaleTransaction
,DEDDCreditTransaction
,DEDDSaleTransaction
,InstallRecurringPayment
,KlarnaPreAuthTransaction
,MobilePhoneChargeTransaction
,ModifyRecurringPayment
,PayPalCreditTransaction
,PixSaleTransaction
,Validate
,WeChatSaleTransaction
- All Known Implementing Classes:
AlipaySaleTransactionObject
,BoletoSaleTransactionObject
,CCCreditTransactionObject
,CCForceTicketTransactionObject
,CCPayerAuthTransactionObject
,CCPreAuthTransactionObject
,CCSaleTransactionObject
,CUPDomesticSaleTransactionObject
,CustomerCForceTicketTransactionObject
,CustomerCSaleTransactionObject
,DEDDCreditTransactionObject
,DEDDSaleTransactionObject
,InstallRecurringPaymentObject
,KlarnaPreAuthTransactionObject
,MobilePhoneChargeTransactionObject
,ModifyRecurringPaymentObject
,PayPalCreditTransactionObject
,PixSaleTransactionObject
,ValidateObject
,WeChatSaleTransactionObject
public interface BillingSetter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
setAddress1(String address1)
sets the first line of the customer's addressvoid
setAddress2(String address2)
sets the second line of the customer's addressvoid
setAddressNumber(String addressNumber)
Deprecated.void
setBirthDate(XMLGregorianCalendar birthDate)
void
setCity(String city)
sets the customer's cityvoid
setCompany(String company)
sets the customer's companyvoid
setCountry(String country)
sets the customer's countryvoid
setCustomerID(String customerID)
sets the customerIDvoid
setEmail(String email)
sets the customer's Email addressvoid
setFax(String fax)
sets the customer's fax numbervoid
setFirstname(String firstname)
void
setGender(de.firstdata.ipg.api.schema.GenderType gender)
void
setHouseExtension(String houseExtension)
void
setHouseNumber(String houseNumber)
void
setMobilePhone(String mobilePhone)
void
setName(String name)
sets the customer's namevoid
setPersonalNumber(String personalNumber)
void
setPhone(String phone)
sets the customer's phone numbervoid
setState(String state)
sets the customer's statevoid
setStreetName(String streetName)
void
setSurname(String surname)
void
setZip(String zip)
sets the customer's zip code
-
-
-
Method Detail
-
setCustomerID
void setCustomerID(String customerID)
sets the customerID- Parameters:
customerID
- the customerID
-
setName
void setName(String name)
sets the customer's name- Parameters:
name
- the customer's name
-
setCompany
void setCompany(String company)
sets the customer's company- Parameters:
company
- the customer's company
-
setAddress1
void setAddress1(String address1)
sets the first line of the customer's address- Parameters:
address1
- the first line of the customer's address
-
setAddress2
void setAddress2(String address2)
sets the second line of the customer's address- Parameters:
address2
- the second line of the customer's address
-
setCity
void setCity(String city)
sets the customer's city- Parameters:
city
- the customer's city
-
setState
void setState(String state)
sets the customer's state- Parameters:
state
- the customer's state
-
setZip
void setZip(String zip)
sets the customer's zip code- Parameters:
zip
- the customer's zip code
-
setCountry
void setCountry(String country)
sets the customer's country- Parameters:
country
- the customer's country
-
setPhone
void setPhone(String phone)
sets the customer's phone number- Parameters:
phone
- the customer's phone number
-
setFax
void setFax(String fax)
sets the customer's fax number- Parameters:
fax
- the customer's fax number
-
setEmail
void setEmail(String email)
sets the customer's Email address- Parameters:
email
- the customer's Email address
-
setPersonalNumber
void setPersonalNumber(String personalNumber)
- Parameters:
value
- personal number of the customer
-
setBirthDate
void setBirthDate(XMLGregorianCalendar birthDate)
- Parameters:
birthDate
- customer birth date
-
setGender
void setGender(de.firstdata.ipg.api.schema.GenderType gender)
- Parameters:
gender
- customer gender - eitherGenderType.MALE
orGenderType.FEMALE
-
setFirstname
void setFirstname(String firstname)
- Parameters:
firstname
- customer firstname
-
setSurname
void setSurname(String surname)
- Parameters:
surname
- customer surname
-
setStreetName
void setStreetName(String streetName)
- Parameters:
streetName
- customer street
-
setHouseNumber
void setHouseNumber(String houseNumber)
- Parameters:
houseNumber
- customer house number
-
setHouseExtension
void setHouseExtension(String houseExtension)
- Parameters:
houseExtension
- customer house extension
-
setMobilePhone
void setMobilePhone(String mobilePhone)
- Parameters:
mobilePhone
- customer mobile phone
-
setAddressNumber
@Deprecated void setAddressNumber(String addressNumber)
Deprecated.sets the customer's address number- Parameters:
addressNumber
- the customer's address number
-
-