
tsg.ns.wsdl.coop.InstallmentSearchRowBasic Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for InstallmentSearchRowBasic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InstallmentSearchRowBasic">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRowBasic">
* <sequence>
* <element name="amount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="amountPaid" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="amountRemaining" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="daysOverdue" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="dueDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDateField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="fxAmount" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="fxAmountPaid" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="fxAmountRemaining" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnDoubleField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="installmentNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnLongField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="status" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnStringField" maxOccurs="unbounded" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchColumnCustomFieldList" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InstallmentSearchRowBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"amount",
"amountPaid",
"amountRemaining",
"daysOverdue",
"dueDate",
"fxAmount",
"fxAmountPaid",
"fxAmountRemaining",
"installmentNumber",
"status",
"customFieldList"
})
public class InstallmentSearchRowBasic
extends SearchRowBasic
{
protected List amount;
protected List amountPaid;
protected List amountRemaining;
protected List daysOverdue;
protected List dueDate;
protected List fxAmount;
protected List fxAmountPaid;
protected List fxAmountRemaining;
protected List installmentNumber;
protected List status;
protected SearchColumnCustomFieldList customFieldList;
/**
* Gets the value of the amount 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 Jakarta XML Binding object.
* This is why there is not a set
method for the amount property.
*
*
* For example, to add a new item, do as follows:
*
* getAmount().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getAmount() {
if (amount == null) {
amount = new ArrayList();
}
return this.amount;
}
/**
* Gets the value of the amountPaid 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 Jakarta XML Binding object.
* This is why there is not a set
method for the amountPaid property.
*
*
* For example, to add a new item, do as follows:
*
* getAmountPaid().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getAmountPaid() {
if (amountPaid == null) {
amountPaid = new ArrayList();
}
return this.amountPaid;
}
/**
* Gets the value of the amountRemaining 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 Jakarta XML Binding object.
* This is why there is not a set
method for the amountRemaining property.
*
*
* For example, to add a new item, do as follows:
*
* getAmountRemaining().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getAmountRemaining() {
if (amountRemaining == null) {
amountRemaining = new ArrayList();
}
return this.amountRemaining;
}
/**
* Gets the value of the daysOverdue 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 Jakarta XML Binding object.
* This is why there is not a set
method for the daysOverdue property.
*
*
* For example, to add a new item, do as follows:
*
* getDaysOverdue().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnLongField }
*
*
*/
public List getDaysOverdue() {
if (daysOverdue == null) {
daysOverdue = new ArrayList();
}
return this.daysOverdue;
}
/**
* Gets the value of the dueDate 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 Jakarta XML Binding object.
* This is why there is not a set
method for the dueDate property.
*
*
* For example, to add a new item, do as follows:
*
* getDueDate().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDateField }
*
*
*/
public List getDueDate() {
if (dueDate == null) {
dueDate = new ArrayList();
}
return this.dueDate;
}
/**
* Gets the value of the fxAmount 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 Jakarta XML Binding object.
* This is why there is not a set
method for the fxAmount property.
*
*
* For example, to add a new item, do as follows:
*
* getFxAmount().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getFxAmount() {
if (fxAmount == null) {
fxAmount = new ArrayList();
}
return this.fxAmount;
}
/**
* Gets the value of the fxAmountPaid 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 Jakarta XML Binding object.
* This is why there is not a set
method for the fxAmountPaid property.
*
*
* For example, to add a new item, do as follows:
*
* getFxAmountPaid().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getFxAmountPaid() {
if (fxAmountPaid == null) {
fxAmountPaid = new ArrayList();
}
return this.fxAmountPaid;
}
/**
* Gets the value of the fxAmountRemaining 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 Jakarta XML Binding object.
* This is why there is not a set
method for the fxAmountRemaining property.
*
*
* For example, to add a new item, do as follows:
*
* getFxAmountRemaining().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnDoubleField }
*
*
*/
public List getFxAmountRemaining() {
if (fxAmountRemaining == null) {
fxAmountRemaining = new ArrayList();
}
return this.fxAmountRemaining;
}
/**
* Gets the value of the installmentNumber 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 Jakarta XML Binding object.
* This is why there is not a set
method for the installmentNumber property.
*
*
* For example, to add a new item, do as follows:
*
* getInstallmentNumber().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnLongField }
*
*
*/
public List getInstallmentNumber() {
if (installmentNumber == null) {
installmentNumber = new ArrayList();
}
return this.installmentNumber;
}
/**
* Gets the value of the status 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 Jakarta XML Binding object.
* This is why there is not a set
method for the status property.
*
*
* For example, to add a new item, do as follows:
*
* getStatus().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SearchColumnStringField }
*
*
*/
public List getStatus() {
if (status == null) {
status = new ArrayList();
}
return this.status;
}
/**
* Gets the value of the customFieldList property.
*
* @return
* possible object is
* {@link SearchColumnCustomFieldList }
*
*/
public SearchColumnCustomFieldList getCustomFieldList() {
return customFieldList;
}
/**
* Sets the value of the customFieldList property.
*
* @param value
* allowed object is
* {@link SearchColumnCustomFieldList }
*
*/
public void setCustomFieldList(SearchColumnCustomFieldList value) {
this.customFieldList = value;
}
}