Class InstallmentBill

java.lang.Object
com.oracle.communications.brm.cc.model.InstallmentBill
All Implemented Interfaces:
Serializable

public class InstallmentBill extends Object implements Serializable
The installment bill.

Java class for installmentBill complex type

.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="installmentBill">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="dueAt" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="dueAmount" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}money"/>
         <element name="billNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="billItems" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}installmentBillItem" maxOccurs="unbounded"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • id

      protected String id
      The installment bill ID.
    • dueAt

      protected String dueAt
      When the installment bill is due.
    • dueAmount

      protected Money dueAmount
    • billNo

      protected String billNo
      The installment bill number.
    • billItems

      protected List<InstallmentBillItem> billItems
  • Constructor Details

    • InstallmentBill

      public InstallmentBill()
  • Method Details

    • getId

      public String getId()
      The installment bill ID.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
      See Also:
    • getDueAt

      public String getDueAt()
      When the installment bill is due.
      Returns:
      possible object is String
    • setDueAt

      public void setDueAt(String value)
      Sets the value of the dueAt property.
      Parameters:
      value - allowed object is String
      See Also:
    • getDueAmount

      public Money getDueAmount()
      Gets the value of the dueAmount property.
      Returns:
      possible object is Money
    • setDueAmount

      public void setDueAmount(Money value)
      Sets the value of the dueAmount property.
      Parameters:
      value - allowed object is Money
    • getBillNo

      public String getBillNo()
      The installment bill number.
      Returns:
      possible object is String
    • setBillNo

      public void setBillNo(String value)
      Sets the value of the billNo property.
      Parameters:
      value - allowed object is String
      See Also:
    • getBillItems

      public List<InstallmentBillItem> getBillItems()
      Gets the value of the billItems 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 set method for the billItems property.

      For example, to add a new item, do as follows:

       getBillItems().add(newItem);
       

      Objects of the following type(s) are allowed in the list InstallmentBillItem

      Returns:
      The value of the billItems property.