Class BillingReferenceLineType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.BillingReferenceLineType
-
public class BillingReferenceLineType extends Object
Java class for BillingReferenceLineType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="BillingReferenceLineType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ID"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Amount" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}AllowanceCharge" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<AllowanceChargeType>allowanceChargeprotected AmountTypeamountprotected IDTypeid
-
Constructor Summary
Constructors Constructor Description BillingReferenceLineType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AllowanceChargeType>getAllowanceCharge()Gets the value of the allowanceCharge property.AmountTypegetAmount()Gets the value of the amount property.IDTypegetID()Gets the value of the id property.voidsetAmount(AmountType value)Sets the value of the amount property.voidsetID(IDType value)Sets the value of the id property.
-
-
-
Field Detail
-
id
protected IDType id
-
amount
protected AmountType amount
-
allowanceCharge
protected List<AllowanceChargeType> allowanceCharge
-
-
Method Detail
-
setID
public void setID(IDType value)
Sets the value of the id property.- Parameters:
value- allowed object isIDType
-
getAmount
public AmountType getAmount()
Gets the value of the amount property.- Returns:
- possible object is
AmountType
-
setAmount
public void setAmount(AmountType value)
Sets the value of the amount property.- Parameters:
value- allowed object isAmountType
-
getAllowanceCharge
public List<AllowanceChargeType> getAllowanceCharge()
Gets the value of the allowanceCharge 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 allowanceCharge property.For example, to add a new item, do as follows:
getAllowanceCharge().add(newItem);Objects of the following type(s) are allowed in the list
AllowanceChargeType
-
-