Package com.adyen.model.nexo
Class PaymentAccountReq
- java.lang.Object
-
- com.adyen.model.nexo.PaymentAccountReq
-
public class PaymentAccountReq extends Object
Definition: Data related to the account pointed by the payment card -- Usage: Information provided by the Sale System related to the payment account requesting a balance.Java class for PaymentAccountReq complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PaymentAccountReq"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="CardAcquisitionReference" type="{}TransactionIdentification" minOccurs="0"/> <element name="PaymentInstrumentData" type="{}PaymentInstrumentData" minOccurs="0"/> </sequence> <attribute name="Account" type="{}AccountType" default="Default" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected AccountTypeaccountTypeThe Account.protected TransactionIdentificationcardAcquisitionReferenceThe Card acquisition reference.protected PaymentInstrumentDatapaymentInstrumentDataThe Payment instrument data.
-
Constructor Summary
Constructors Constructor Description PaymentAccountReq()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AccountTypegetAccountType()Gets the value of the AccountType property.TransactionIdentificationgetCardAcquisitionReference()Gets the value of the cardAcquisitionReference property.PaymentInstrumentDatagetPaymentInstrumentData()Gets the value of the paymentInstrumentData property.voidsetAccountType(AccountType value)Sets the value of the AccountType property.voidsetCardAcquisitionReference(TransactionIdentification value)Sets the value of the cardAcquisitionReference property.voidsetPaymentInstrumentData(PaymentInstrumentData value)Sets the value of the paymentInstrumentData property.
-
-
-
Field Detail
-
cardAcquisitionReference
protected TransactionIdentification cardAcquisitionReference
The Card acquisition reference.
-
paymentInstrumentData
protected PaymentInstrumentData paymentInstrumentData
The Payment instrument data.
-
accountType
protected AccountType accountType
The Account.
-
-
Method Detail
-
getCardAcquisitionReference
public TransactionIdentification getCardAcquisitionReference()
Gets the value of the cardAcquisitionReference property.- Returns:
- possible object is
TransactionIdentification
-
setCardAcquisitionReference
public void setCardAcquisitionReference(TransactionIdentification value)
Sets the value of the cardAcquisitionReference property.- Parameters:
value- allowed object isTransactionIdentification
-
getPaymentInstrumentData
public PaymentInstrumentData getPaymentInstrumentData()
Gets the value of the paymentInstrumentData property.- Returns:
- possible object is
PaymentInstrumentData
-
setPaymentInstrumentData
public void setPaymentInstrumentData(PaymentInstrumentData value)
Sets the value of the paymentInstrumentData property.- Parameters:
value- allowed object isPaymentInstrumentData
-
getAccountType
public AccountType getAccountType()
Gets the value of the AccountType property.- Returns:
- possible object is
AccountType
-
setAccountType
public void setAccountType(AccountType value)
Sets the value of the AccountType property.- Parameters:
value- allowed object isAccountType
-
-