Class InstallmentBill
java.lang.Object
com.oracle.communications.brm.cc.model.InstallmentBill
- All Implemented Interfaces:
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 Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the billItems property.The installment bill number.Gets the value of the dueAmount property.getDueAt()
When the installment bill is due.getId()
The installment bill ID.void
Sets the value of the billNo property.void
setDueAmount
(Money value) Sets the value of the dueAmount property.void
Sets the value of the dueAt property.void
Sets the value of the id property.
-
Field Details
-
id
The installment bill ID. -
dueAt
When the installment bill is due. -
dueAmount
-
billNo
The installment bill number. -
billItems
-
-
Constructor Details
-
InstallmentBill
public InstallmentBill()
-
-
Method Details
-
getId
The installment bill ID.- Returns:
- possible object is
String
-
setId
Sets the value of the id property.- Parameters:
value
- allowed object isString
- See Also:
-
getDueAt
When the installment bill is due.- Returns:
- possible object is
String
-
setDueAt
Sets the value of the dueAt property.- Parameters:
value
- allowed object isString
- See Also:
-
getDueAmount
Gets the value of the dueAmount property.- Returns:
- possible object is
Money
-
setDueAmount
Sets the value of the dueAmount property.- Parameters:
value
- allowed object isMoney
-
getBillNo
The installment bill number.- Returns:
- possible object is
String
-
setBillNo
Sets the value of the billNo property.- Parameters:
value
- allowed object isString
- See Also:
-
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.
-