Package com.adyen.model.nexo
Class StoredValueAccountStatus
- java.lang.Object
-
- com.adyen.model.nexo.StoredValueAccountStatus
-
public class StoredValueAccountStatus extends Object
Definition: Data related to the result of the stored value card transaction. -- Usage: It contains: - the identification of the stored value accounts or the stored value cards - the identification of the transaction by the stored value host - the balance of the stored value account if relevantJava class for StoredValueAccountStatus complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="StoredValueAccountStatus"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="StoredValueAccountID" type="{}StoredValueAccountID"/> </sequence> <attribute name="CurrentBalance" type="{}SimpleAmountType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BigDecimalcurrentBalanceThe Current balance.protected StoredValueAccountIDstoredValueAccountIDThe Stored value account id.
-
Constructor Summary
Constructors Constructor Description StoredValueAccountStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalgetCurrentBalance()Gets the value of the currentBalance property.StoredValueAccountIDgetStoredValueAccountID()Gets the value of the storedValueAccountID property.voidsetCurrentBalance(BigDecimal value)Sets the value of the currentBalance property.voidsetStoredValueAccountID(StoredValueAccountID value)Sets the value of the storedValueAccountID property.
-
-
-
Field Detail
-
storedValueAccountID
protected StoredValueAccountID storedValueAccountID
The Stored value account id.
-
currentBalance
protected BigDecimal currentBalance
The Current balance.
-
-
Method Detail
-
getStoredValueAccountID
public StoredValueAccountID getStoredValueAccountID()
Gets the value of the storedValueAccountID property.- Returns:
- possible object is
StoredValueAccountID
-
setStoredValueAccountID
public void setStoredValueAccountID(StoredValueAccountID value)
Sets the value of the storedValueAccountID property.- Parameters:
value- allowed object isStoredValueAccountID
-
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
-
-