Package com.adyen.model.nexo
Class PaymentAccountStatus
- java.lang.Object
-
- com.adyen.model.nexo.PaymentAccountStatus
-
public class PaymentAccountStatus extends Object
Definition: Data related to the result of a Balance Inquiry request.Java class for PaymentAccountStatus complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PaymentAccountStatus"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="PaymentInstrumentData" type="{}PaymentInstrumentData" minOccurs="0"/> <element name="PaymentAcquirerData" type="{}PaymentAcquirerData" minOccurs="0"/> <element name="LoyaltyAccountStatus" type="{}LoyaltyAccountStatus" minOccurs="0"/> </sequence> <attribute name="Currency" type="{}ISOCurrency3A" /> <attribute name="CurrentBalance" type="{}SimpleAmountType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringcurrencyThe Currency.protected BigDecimalcurrentBalanceThe Current balance.protected LoyaltyAccountStatusloyaltyAccountStatusThe Loyalty account status.protected PaymentAcquirerDatapaymentAcquirerDataThe Payment acquirer data.protected PaymentInstrumentDatapaymentInstrumentDataThe Payment instrument data.
-
Constructor Summary
Constructors Constructor Description PaymentAccountStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCurrency()Gets the value of the currency property.BigDecimalgetCurrentBalance()Gets the value of the currentBalance property.LoyaltyAccountStatusgetLoyaltyAccountStatus()Gets the value of the loyaltyAccountStatus property.PaymentAcquirerDatagetPaymentAcquirerData()Gets the value of the paymentAcquirerData property.PaymentInstrumentDatagetPaymentInstrumentData()Gets the value of the paymentInstrumentData property.voidsetCurrency(String value)Sets the value of the currency property.voidsetCurrentBalance(BigDecimal value)Sets the value of the currentBalance property.voidsetLoyaltyAccountStatus(LoyaltyAccountStatus value)Sets the value of the loyaltyAccountStatus property.voidsetPaymentAcquirerData(PaymentAcquirerData value)Sets the value of the paymentAcquirerData property.voidsetPaymentInstrumentData(PaymentInstrumentData value)Sets the value of the paymentInstrumentData property.
-
-
-
Field Detail
-
paymentInstrumentData
protected PaymentInstrumentData paymentInstrumentData
The Payment instrument data.
-
paymentAcquirerData
protected PaymentAcquirerData paymentAcquirerData
The Payment acquirer data.
-
loyaltyAccountStatus
protected LoyaltyAccountStatus loyaltyAccountStatus
The Loyalty account status.
-
currency
protected String currency
The Currency.
-
currentBalance
protected BigDecimal currentBalance
The Current balance.
-
-
Method Detail
-
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
-
getPaymentAcquirerData
public PaymentAcquirerData getPaymentAcquirerData()
Gets the value of the paymentAcquirerData property.- Returns:
- possible object is
PaymentAcquirerData
-
setPaymentAcquirerData
public void setPaymentAcquirerData(PaymentAcquirerData value)
Sets the value of the paymentAcquirerData property.- Parameters:
value- allowed object isPaymentAcquirerData
-
getLoyaltyAccountStatus
public LoyaltyAccountStatus getLoyaltyAccountStatus()
Gets the value of the loyaltyAccountStatus property.- Returns:
- possible object is
LoyaltyAccountStatus
-
setLoyaltyAccountStatus
public void setLoyaltyAccountStatus(LoyaltyAccountStatus value)
Sets the value of the loyaltyAccountStatus property.- Parameters:
value- allowed object isLoyaltyAccountStatus
-
getCurrency
public String getCurrency()
Gets the value of the currency property.- Returns:
- possible object is
String
-
setCurrency
public void setCurrency(String value)
Sets the value of the currency property.- Parameters:
value- allowed object isString
-
getCurrentBalance
public BigDecimal getCurrentBalance()
Gets the value of the currentBalance property.- Returns:
- possible object is
BigDecimal
-
setCurrentBalance
public void setCurrentBalance(BigDecimal value)
Sets the value of the currentBalance property.- Parameters:
value- allowed object isBigDecimal
-
-