
tsg.ns.wsdl.coop.TimeEntry 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 TimeEntry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TimeEntry">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}Record">
* <sequence>
* <element name="hours" type="{urn:core_2023_1.platform.webservices.netsuite.com}Duration" minOccurs="0"/>
* <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="customer" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="caseTaskEvent" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="isBillable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="payrollItem" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="paidExternally" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="price" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="rate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="overrideRate" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="memo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="department" 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="location" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="billingClass" 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="approvalStatus" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="timeType" type="{urn:types.employees_2023_1.transactions.webservices.netsuite.com}TimeBillTimeType" 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 = "TimeEntry", namespace = "urn:employees_2023_1.transactions.webservices.netsuite.com", propOrder = {
"hours",
"createdDate",
"lastModifiedDate",
"customer",
"caseTaskEvent",
"item",
"isBillable",
"payrollItem",
"paidExternally",
"price",
"rate",
"overrideRate",
"memo",
"department",
"clazz",
"location",
"billingClass",
"subsidiary",
"approvalStatus",
"timeType",
"customFieldList"
})
public class TimeEntry
extends Record
{
protected Duration hours;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar createdDate;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastModifiedDate;
protected RecordRef customer;
protected RecordRef caseTaskEvent;
protected RecordRef item;
protected Boolean isBillable;
protected RecordRef payrollItem;
protected Boolean paidExternally;
protected RecordRef price;
protected Double rate;
protected Boolean overrideRate;
protected String memo;
protected RecordRef department;
@XmlElement(name = "class")
protected RecordRef clazz;
protected RecordRef location;
protected String billingClass;
protected RecordRef subsidiary;
protected RecordRef approvalStatus;
@XmlSchemaType(name = "string")
protected TimeBillTimeType timeType;
protected CustomFieldList customFieldList;
@XmlAttribute(name = "internalId")
protected String internalId;
@XmlAttribute(name = "externalId")
protected String externalId;
/**
* Gets the value of the hours property.
*
* @return
* possible object is
* {@link Duration }
*
*/
public Duration getHours() {
return hours;
}
/**
* Sets the value of the hours property.
*
* @param value
* allowed object is
* {@link Duration }
*
*/
public void setHours(Duration value) {
this.hours = value;
}
/**
* 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 customer property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getCustomer() {
return customer;
}
/**
* Sets the value of the customer property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setCustomer(RecordRef value) {
this.customer = value;
}
/**
* Gets the value of the caseTaskEvent property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getCaseTaskEvent() {
return caseTaskEvent;
}
/**
* Sets the value of the caseTaskEvent property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setCaseTaskEvent(RecordRef value) {
this.caseTaskEvent = value;
}
/**
* Gets the value of the item property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getItem() {
return item;
}
/**
* Sets the value of the item property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setItem(RecordRef value) {
this.item = value;
}
/**
* Gets the value of the isBillable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsBillable() {
return isBillable;
}
/**
* Sets the value of the isBillable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsBillable(Boolean value) {
this.isBillable = value;
}
/**
* Gets the value of the payrollItem property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getPayrollItem() {
return payrollItem;
}
/**
* Sets the value of the payrollItem property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setPayrollItem(RecordRef value) {
this.payrollItem = value;
}
/**
* Gets the value of the paidExternally property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPaidExternally() {
return paidExternally;
}
/**
* Sets the value of the paidExternally property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPaidExternally(Boolean value) {
this.paidExternally = value;
}
/**
* Gets the value of the price property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getPrice() {
return price;
}
/**
* Sets the value of the price property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setPrice(RecordRef value) {
this.price = value;
}
/**
* Gets the value of the rate property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getRate() {
return rate;
}
/**
* Sets the value of the rate property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setRate(Double value) {
this.rate = value;
}
/**
* Gets the value of the overrideRate property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isOverrideRate() {
return overrideRate;
}
/**
* Sets the value of the overrideRate property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setOverrideRate(Boolean value) {
this.overrideRate = 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 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 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 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 billingClass property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBillingClass() {
return billingClass;
}
/**
* Sets the value of the billingClass property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBillingClass(String value) {
this.billingClass = 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 approvalStatus property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getApprovalStatus() {
return approvalStatus;
}
/**
* Sets the value of the approvalStatus property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setApprovalStatus(RecordRef value) {
this.approvalStatus = value;
}
/**
* Gets the value of the timeType property.
*
* @return
* possible object is
* {@link TimeBillTimeType }
*
*/
public TimeBillTimeType getTimeType() {
return timeType;
}
/**
* Sets the value of the timeType property.
*
* @param value
* allowed object is
* {@link TimeBillTimeType }
*
*/
public void setTimeType(TimeBillTimeType value) {
this.timeType = 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