Package org.cxml
Class InvoiceStatus
- java.lang.Object
-
- org.cxml.InvoiceStatus
-
public class InvoiceStatus extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Comments>commentsprotected InvoiceIDInfoinvoiceIDInfoprotected PartialAmountpartialAmountprotected java.lang.Stringtype
-
Constructor Summary
Constructors Constructor Description InvoiceStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Comments>getComments()Gets the value of the comments property.InvoiceIDInfogetInvoiceIDInfo()Gets the value of the invoiceIDInfo property.PartialAmountgetPartialAmount()Gets the value of the partialAmount property.java.lang.StringgetType()Gets the value of the type property.voidsetInvoiceIDInfo(InvoiceIDInfo value)Sets the value of the invoiceIDInfo property.voidsetPartialAmount(PartialAmount value)Sets the value of the partialAmount property.voidsetType(java.lang.String value)Sets the value of the type property.
-
-
-
Field Detail
-
type
protected java.lang.String type
-
invoiceIDInfo
protected InvoiceIDInfo invoiceIDInfo
-
partialAmount
protected PartialAmount partialAmount
-
comments
protected java.util.List<Comments> comments
-
-
Method Detail
-
getType
public java.lang.String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(java.lang.String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getInvoiceIDInfo
public InvoiceIDInfo getInvoiceIDInfo()
Gets the value of the invoiceIDInfo property.- Returns:
- possible object is
InvoiceIDInfo
-
setInvoiceIDInfo
public void setInvoiceIDInfo(InvoiceIDInfo value)
Sets the value of the invoiceIDInfo property.- Parameters:
value- allowed object isInvoiceIDInfo
-
getPartialAmount
public PartialAmount getPartialAmount()
Gets the value of the partialAmount property.- Returns:
- possible object is
PartialAmount
-
setPartialAmount
public void setPartialAmount(PartialAmount value)
Sets the value of the partialAmount property.- Parameters:
value- allowed object isPartialAmount
-
getComments
public java.util.List<Comments> getComments()
Gets the value of the comments 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 comments property.For example, to add a new item, do as follows:
getComments().add(newItem);Objects of the following type(s) are allowed in the list
Comments
-
-