
tsg.ns.wsdl.coop.ProjectTaskAssignmentSearchBasic Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ProjectTaskAssignmentSearchBasic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProjectTaskAssignmentSearchBasic">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRecordBasic">
* <sequence>
* <element name="actualWork" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="cost" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="costBase" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="endDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
* <element name="estimatedWork" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="estimatedWorkBaseline" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="grossProfit" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="grossProfitBase" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="internalId" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="internalIdNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
* <element name="plannedWork" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="plannedWorkBaseline" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="price" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="priceBase" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="resource" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* <element name="resourceName" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="serviceItem" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="serviceItemDesc" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchStringField" minOccurs="0"/>
* <element name="startDate" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
* <element name="unitCost" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="unitCostBase" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="unitPrice" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="unitPriceBase" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="units" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
* <element name="workCalendar" type="{urn:core_2023_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProjectTaskAssignmentSearchBasic", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"actualWork",
"cost",
"costBase",
"endDate",
"estimatedWork",
"estimatedWorkBaseline",
"grossProfit",
"grossProfitBase",
"internalId",
"internalIdNumber",
"plannedWork",
"plannedWorkBaseline",
"price",
"priceBase",
"resource",
"resourceName",
"serviceItem",
"serviceItemDesc",
"startDate",
"unitCost",
"unitCostBase",
"unitPrice",
"unitPriceBase",
"units",
"workCalendar"
})
public class ProjectTaskAssignmentSearchBasic
extends SearchRecordBasic
{
protected SearchDoubleField actualWork;
protected SearchDoubleField cost;
protected SearchDoubleField costBase;
protected SearchDateField endDate;
protected SearchDoubleField estimatedWork;
protected SearchDoubleField estimatedWorkBaseline;
protected SearchDoubleField grossProfit;
protected SearchDoubleField grossProfitBase;
protected SearchMultiSelectField internalId;
protected SearchLongField internalIdNumber;
protected SearchDoubleField plannedWork;
protected SearchDoubleField plannedWorkBaseline;
protected SearchDoubleField price;
protected SearchDoubleField priceBase;
protected SearchMultiSelectField resource;
protected SearchStringField resourceName;
protected SearchStringField serviceItem;
protected SearchStringField serviceItemDesc;
protected SearchDateField startDate;
protected SearchDoubleField unitCost;
protected SearchDoubleField unitCostBase;
protected SearchDoubleField unitPrice;
protected SearchDoubleField unitPriceBase;
protected SearchDoubleField units;
protected SearchMultiSelectField workCalendar;
/**
* Gets the value of the actualWork property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getActualWork() {
return actualWork;
}
/**
* Sets the value of the actualWork property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setActualWork(SearchDoubleField value) {
this.actualWork = value;
}
/**
* Gets the value of the cost property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getCost() {
return cost;
}
/**
* Sets the value of the cost property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setCost(SearchDoubleField value) {
this.cost = value;
}
/**
* Gets the value of the costBase property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getCostBase() {
return costBase;
}
/**
* Sets the value of the costBase property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setCostBase(SearchDoubleField value) {
this.costBase = value;
}
/**
* Gets the value of the endDate property.
*
* @return
* possible object is
* {@link SearchDateField }
*
*/
public SearchDateField getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is
* {@link SearchDateField }
*
*/
public void setEndDate(SearchDateField value) {
this.endDate = value;
}
/**
* Gets the value of the estimatedWork property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getEstimatedWork() {
return estimatedWork;
}
/**
* Sets the value of the estimatedWork property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setEstimatedWork(SearchDoubleField value) {
this.estimatedWork = value;
}
/**
* Gets the value of the estimatedWorkBaseline property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getEstimatedWorkBaseline() {
return estimatedWorkBaseline;
}
/**
* Sets the value of the estimatedWorkBaseline property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setEstimatedWorkBaseline(SearchDoubleField value) {
this.estimatedWorkBaseline = value;
}
/**
* Gets the value of the grossProfit property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getGrossProfit() {
return grossProfit;
}
/**
* Sets the value of the grossProfit property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setGrossProfit(SearchDoubleField value) {
this.grossProfit = value;
}
/**
* Gets the value of the grossProfitBase property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getGrossProfitBase() {
return grossProfitBase;
}
/**
* Sets the value of the grossProfitBase property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setGrossProfitBase(SearchDoubleField value) {
this.grossProfitBase = value;
}
/**
* Gets the value of the internalId property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getInternalId() {
return internalId;
}
/**
* Sets the value of the internalId property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setInternalId(SearchMultiSelectField value) {
this.internalId = value;
}
/**
* Gets the value of the internalIdNumber property.
*
* @return
* possible object is
* {@link SearchLongField }
*
*/
public SearchLongField getInternalIdNumber() {
return internalIdNumber;
}
/**
* Sets the value of the internalIdNumber property.
*
* @param value
* allowed object is
* {@link SearchLongField }
*
*/
public void setInternalIdNumber(SearchLongField value) {
this.internalIdNumber = value;
}
/**
* Gets the value of the plannedWork property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getPlannedWork() {
return plannedWork;
}
/**
* Sets the value of the plannedWork property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setPlannedWork(SearchDoubleField value) {
this.plannedWork = value;
}
/**
* Gets the value of the plannedWorkBaseline property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getPlannedWorkBaseline() {
return plannedWorkBaseline;
}
/**
* Sets the value of the plannedWorkBaseline property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setPlannedWorkBaseline(SearchDoubleField value) {
this.plannedWorkBaseline = value;
}
/**
* Gets the value of the price property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getPrice() {
return price;
}
/**
* Sets the value of the price property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setPrice(SearchDoubleField value) {
this.price = value;
}
/**
* Gets the value of the priceBase property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getPriceBase() {
return priceBase;
}
/**
* Sets the value of the priceBase property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setPriceBase(SearchDoubleField value) {
this.priceBase = value;
}
/**
* Gets the value of the resource property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getResource() {
return resource;
}
/**
* Sets the value of the resource property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setResource(SearchMultiSelectField value) {
this.resource = value;
}
/**
* Gets the value of the resourceName property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getResourceName() {
return resourceName;
}
/**
* Sets the value of the resourceName property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setResourceName(SearchStringField value) {
this.resourceName = value;
}
/**
* Gets the value of the serviceItem property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getServiceItem() {
return serviceItem;
}
/**
* Sets the value of the serviceItem property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setServiceItem(SearchStringField value) {
this.serviceItem = value;
}
/**
* Gets the value of the serviceItemDesc property.
*
* @return
* possible object is
* {@link SearchStringField }
*
*/
public SearchStringField getServiceItemDesc() {
return serviceItemDesc;
}
/**
* Sets the value of the serviceItemDesc property.
*
* @param value
* allowed object is
* {@link SearchStringField }
*
*/
public void setServiceItemDesc(SearchStringField value) {
this.serviceItemDesc = value;
}
/**
* Gets the value of the startDate property.
*
* @return
* possible object is
* {@link SearchDateField }
*
*/
public SearchDateField getStartDate() {
return startDate;
}
/**
* Sets the value of the startDate property.
*
* @param value
* allowed object is
* {@link SearchDateField }
*
*/
public void setStartDate(SearchDateField value) {
this.startDate = value;
}
/**
* Gets the value of the unitCost property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getUnitCost() {
return unitCost;
}
/**
* Sets the value of the unitCost property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setUnitCost(SearchDoubleField value) {
this.unitCost = value;
}
/**
* Gets the value of the unitCostBase property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getUnitCostBase() {
return unitCostBase;
}
/**
* Sets the value of the unitCostBase property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setUnitCostBase(SearchDoubleField value) {
this.unitCostBase = value;
}
/**
* Gets the value of the unitPrice property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getUnitPrice() {
return unitPrice;
}
/**
* Sets the value of the unitPrice property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setUnitPrice(SearchDoubleField value) {
this.unitPrice = value;
}
/**
* Gets the value of the unitPriceBase property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getUnitPriceBase() {
return unitPriceBase;
}
/**
* Sets the value of the unitPriceBase property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setUnitPriceBase(SearchDoubleField value) {
this.unitPriceBase = value;
}
/**
* Gets the value of the units property.
*
* @return
* possible object is
* {@link SearchDoubleField }
*
*/
public SearchDoubleField getUnits() {
return units;
}
/**
* Sets the value of the units property.
*
* @param value
* allowed object is
* {@link SearchDoubleField }
*
*/
public void setUnits(SearchDoubleField value) {
this.units = value;
}
/**
* Gets the value of the workCalendar property.
*
* @return
* possible object is
* {@link SearchMultiSelectField }
*
*/
public SearchMultiSelectField getWorkCalendar() {
return workCalendar;
}
/**
* Sets the value of the workCalendar property.
*
* @param value
* allowed object is
* {@link SearchMultiSelectField }
*
*/
public void setWorkCalendar(SearchMultiSelectField value) {
this.workCalendar = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy