
tsg.ns.wsdl.coop.PeriodEndJournal Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PeriodEndJournal complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PeriodEndJournal">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}Record">
* <sequence>
* <element name="createdDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="lastModifiedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="transactionNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="accountingBook" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="customForm" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="tranId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="trandate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="postingPeriod" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="memo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="subsidiary" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="sourceSubsidiary" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="class" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="department" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="mainAccount" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="currency" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="creditTotal" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="debitTotal" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="lineList" type="{urn:general_2023_1.transactions.webservices.netsuite.com}PeriodEndJournalLineList" minOccurs="0"/>
* <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}CustomFieldList" minOccurs="0"/>
* </sequence>
* <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="externalId" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PeriodEndJournal", namespace = "urn:general_2023_1.transactions.webservices.netsuite.com", propOrder = {
"createdDate",
"lastModifiedDate",
"transactionNumber",
"accountingBook",
"customForm",
"tranId",
"trandate",
"postingPeriod",
"memo",
"subsidiary",
"sourceSubsidiary",
"clazz",
"department",
"location",
"mainAccount",
"currency",
"creditTotal",
"debitTotal",
"lineList",
"customFieldList"
})
public class PeriodEndJournal
extends Record
{
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar createdDate;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastModifiedDate;
protected String transactionNumber;
protected RecordRef accountingBook;
protected RecordRef customForm;
protected String tranId;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar trandate;
protected RecordRef postingPeriod;
protected String memo;
protected RecordRef subsidiary;
protected RecordRef sourceSubsidiary;
@XmlElement(name = "class")
protected RecordRef clazz;
protected RecordRef department;
protected RecordRef location;
protected RecordRef mainAccount;
protected RecordRef currency;
protected Double creditTotal;
protected Double debitTotal;
protected PeriodEndJournalLineList lineList;
protected CustomFieldList customFieldList;
@XmlAttribute(name = "internalId")
protected String internalId;
@XmlAttribute(name = "externalId")
protected String externalId;
/**
* Gets the value of the createdDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreatedDate() {
return createdDate;
}
/**
* Sets the value of the createdDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreatedDate(XMLGregorianCalendar value) {
this.createdDate = value;
}
/**
* Gets the value of the lastModifiedDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastModifiedDate() {
return lastModifiedDate;
}
/**
* Sets the value of the lastModifiedDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastModifiedDate(XMLGregorianCalendar value) {
this.lastModifiedDate = value;
}
/**
* Gets the value of the transactionNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransactionNumber() {
return transactionNumber;
}
/**
* Sets the value of the transactionNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTransactionNumber(String value) {
this.transactionNumber = value;
}
/**
* Gets the value of the accountingBook property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getAccountingBook() {
return accountingBook;
}
/**
* Sets the value of the accountingBook property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setAccountingBook(RecordRef value) {
this.accountingBook = value;
}
/**
* Gets the value of the customForm property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getCustomForm() {
return customForm;
}
/**
* Sets the value of the customForm property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setCustomForm(RecordRef value) {
this.customForm = value;
}
/**
* Gets the value of the tranId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTranId() {
return tranId;
}
/**
* Sets the value of the tranId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTranId(String value) {
this.tranId = value;
}
/**
* Gets the value of the trandate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTrandate() {
return trandate;
}
/**
* Sets the value of the trandate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTrandate(XMLGregorianCalendar value) {
this.trandate = value;
}
/**
* Gets the value of the postingPeriod property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getPostingPeriod() {
return postingPeriod;
}
/**
* Sets the value of the postingPeriod property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setPostingPeriod(RecordRef value) {
this.postingPeriod = value;
}
/**
* Gets the value of the memo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMemo() {
return memo;
}
/**
* Sets the value of the memo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMemo(String value) {
this.memo = value;
}
/**
* Gets the value of the subsidiary property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getSubsidiary() {
return subsidiary;
}
/**
* Sets the value of the subsidiary property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setSubsidiary(RecordRef value) {
this.subsidiary = value;
}
/**
* Gets the value of the sourceSubsidiary property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getSourceSubsidiary() {
return sourceSubsidiary;
}
/**
* Sets the value of the sourceSubsidiary property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setSourceSubsidiary(RecordRef value) {
this.sourceSubsidiary = value;
}
/**
* Gets the value of the clazz property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getClazz() {
return clazz;
}
/**
* Sets the value of the clazz property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setClazz(RecordRef value) {
this.clazz = value;
}
/**
* Gets the value of the department property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getDepartment() {
return department;
}
/**
* Sets the value of the department property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setDepartment(RecordRef value) {
this.department = value;
}
/**
* Gets the value of the location property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getLocation() {
return location;
}
/**
* Sets the value of the location property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setLocation(RecordRef value) {
this.location = value;
}
/**
* Gets the value of the mainAccount property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getMainAccount() {
return mainAccount;
}
/**
* Sets the value of the mainAccount property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setMainAccount(RecordRef value) {
this.mainAccount = value;
}
/**
* Gets the value of the currency property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getCurrency() {
return currency;
}
/**
* Sets the value of the currency property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setCurrency(RecordRef value) {
this.currency = value;
}
/**
* Gets the value of the creditTotal property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getCreditTotal() {
return creditTotal;
}
/**
* Sets the value of the creditTotal property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setCreditTotal(Double value) {
this.creditTotal = value;
}
/**
* Gets the value of the debitTotal property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getDebitTotal() {
return debitTotal;
}
/**
* Sets the value of the debitTotal property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setDebitTotal(Double value) {
this.debitTotal = value;
}
/**
* Gets the value of the lineList property.
*
* @return
* possible object is
* {@link PeriodEndJournalLineList }
*
*/
public PeriodEndJournalLineList getLineList() {
return lineList;
}
/**
* Sets the value of the lineList property.
*
* @param value
* allowed object is
* {@link PeriodEndJournalLineList }
*
*/
public void setLineList(PeriodEndJournalLineList value) {
this.lineList = value;
}
/**
* Gets the value of the customFieldList property.
*
* @return
* possible object is
* {@link CustomFieldList }
*
*/
public CustomFieldList getCustomFieldList() {
return customFieldList;
}
/**
* Sets the value of the customFieldList property.
*
* @param value
* allowed object is
* {@link CustomFieldList }
*
*/
public void setCustomFieldList(CustomFieldList value) {
this.customFieldList = value;
}
/**
* Gets the value of the internalId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInternalId() {
return internalId;
}
/**
* Sets the value of the internalId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInternalId(String value) {
this.internalId = value;
}
/**
* Gets the value of the externalId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalId() {
return externalId;
}
/**
* Sets the value of the externalId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalId(String value) {
this.externalId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy