Package com.adyen.model.nexo
Class CoinsOrBills
- java.lang.Object
-
- com.adyen.model.nexo.CoinsOrBills
-
public class CoinsOrBills extends Object
Definition: Number of coins or bills of a given value. -- Usage: Indicates the remaining number of coins or bills of a given value in a cash handling device. When the cash handling machine does not have any more coins or bills of a certain value, the number must be equal to 0.Java class for CoinsOrBills complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CoinsOrBills"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="UnitValue" use="required" type="{}SimpleAmountType" /> <attribute name="Number" use="required" type="{}Number" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BigIntegernumberThe Number.protected BigDecimalunitValueThe Unit value.
-
Constructor Summary
Constructors Constructor Description CoinsOrBills()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetNumber()Gets the value of the number property.BigDecimalgetUnitValue()Gets the value of the unitValue property.voidsetNumber(BigInteger value)Sets the value of the number property.voidsetUnitValue(BigDecimal value)Sets the value of the unitValue property.
-
-
-
Field Detail
-
unitValue
protected BigDecimal unitValue
The Unit value.
-
number
protected BigInteger number
The Number.
-
-
Method Detail
-
getUnitValue
public BigDecimal getUnitValue()
Gets the value of the unitValue property.- Returns:
- possible object is
BigDecimal
-
setUnitValue
public void setUnitValue(BigDecimal value)
Sets the value of the unitValue property.- Parameters:
value- allowed object isBigDecimal
-
getNumber
public BigInteger getNumber()
Gets the value of the number property.- Returns:
- possible object is
BigInteger
-
setNumber
public void setNumber(BigInteger value)
Sets the value of the number property.- Parameters:
value- allowed object isBigInteger
-
-