Class OnAccountPaymentType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.OnAccountPaymentType
-
public class OnAccountPaymentType extends Object
Java class for OnAccountPaymentType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="OnAccountPaymentType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}EstimatedConsumedQuantity"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Note" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}PaymentTerms" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected EstimatedConsumedQuantityTypeestimatedConsumedQuantityprotected List<NoteType>noteprotected List<PaymentTermsType>paymentTerms
-
Constructor Summary
Constructors Constructor Description OnAccountPaymentType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EstimatedConsumedQuantityTypegetEstimatedConsumedQuantity()Gets the value of the estimatedConsumedQuantity property.List<NoteType>getNote()Gets the value of the note property.List<PaymentTermsType>getPaymentTerms()Gets the value of the paymentTerms property.voidsetEstimatedConsumedQuantity(EstimatedConsumedQuantityType value)Sets the value of the estimatedConsumedQuantity property.
-
-
-
Field Detail
-
estimatedConsumedQuantity
protected EstimatedConsumedQuantityType estimatedConsumedQuantity
-
paymentTerms
protected List<PaymentTermsType> paymentTerms
-
-
Method Detail
-
getEstimatedConsumedQuantity
public EstimatedConsumedQuantityType getEstimatedConsumedQuantity()
Gets the value of the estimatedConsumedQuantity property.- Returns:
- possible object is
EstimatedConsumedQuantityType
-
setEstimatedConsumedQuantity
public void setEstimatedConsumedQuantity(EstimatedConsumedQuantityType value)
Sets the value of the estimatedConsumedQuantity property.- Parameters:
value- allowed object isEstimatedConsumedQuantityType
-
getNote
public List<NoteType> getNote()
Gets the value of the note 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 note property.For example, to add a new item, do as follows:
getNote().add(newItem);
Objects of the following type(s) are allowed in the list
NoteType- Returns:
- The value of the note property.
-
getPaymentTerms
public List<PaymentTermsType> getPaymentTerms()
Gets the value of the paymentTerms 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 paymentTerms property.For example, to add a new item, do as follows:
getPaymentTerms().add(newItem);
Objects of the following type(s) are allowed in the list
PaymentTermsType- Returns:
- The value of the paymentTerms property.
-
-