Class 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 Detail

      • unitValue

        protected BigDecimal unitValue
        The Unit value.
    • Constructor Detail

      • CoinsOrBills

        public CoinsOrBills()
    • 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 is BigDecimal
      • 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 is BigInteger