Package com.adyen.model.nexo
Class CashHandlingDevice
- java.lang.Object
-
- com.adyen.model.nexo.CashHandlingDevice
-
public class CashHandlingDevice extends Object
Definition: Status of cash handling device. -- Usage: Indicate the status and the remaining coins and bill in a cash handling device.Java class for CashHandlingDevice complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CashHandlingDevice"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="CoinsOrBills" type="{}CoinsOrBills" maxOccurs="unbounded"/> </sequence> <attribute name="CashHandlingOKFlag" use="required" type="{}CashHandlingOKFlag" /> <attribute name="Currency" use="required" type="{}ISOCurrency3A" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected booleancashHandlingOKFlagThe Cash handling ok flag.protected List<CoinsOrBills>coinsOrBillsThe Coins or bills.protected StringcurrencyThe Currency.
-
Constructor Summary
Constructors Constructor Description CashHandlingDevice()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CoinsOrBills>getCoinsOrBills()Gets the value of the coinsOrBills property.StringgetCurrency()Gets the value of the currency property.booleanisCashHandlingOKFlag()Gets the value of the cashHandlingOKFlag property.voidsetCashHandlingOKFlag(boolean value)Sets the value of the cashHandlingOKFlag property.voidsetCurrency(String value)Sets the value of the currency property.
-
-
-
Field Detail
-
coinsOrBills
protected List<CoinsOrBills> coinsOrBills
The Coins or bills.
-
cashHandlingOKFlag
protected boolean cashHandlingOKFlag
The Cash handling ok flag.
-
currency
protected String currency
The Currency.
-
-
Method Detail
-
getCoinsOrBills
public List<CoinsOrBills> getCoinsOrBills()
Gets the value of the coinsOrBills property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the coinsOrBills property.For example, to add a new item, do as follows:
getCoinsOrBills().add(newItem);Objects of the following type(s) are allowed in the list
CoinsOrBills- Returns:
- the coins or bills
-
isCashHandlingOKFlag
public boolean isCashHandlingOKFlag()
Gets the value of the cashHandlingOKFlag property.- Returns:
- the boolean
-
setCashHandlingOKFlag
public void setCashHandlingOKFlag(boolean value)
Sets the value of the cashHandlingOKFlag property.- Parameters:
value- the value
-
getCurrency
public String getCurrency()
Gets the value of the currency property.- Returns:
- possible object is
String
-
-