
tsg.ns.wsdl.coop.JobPlStatement 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 JobPlStatement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="JobPlStatement">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="costCategory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="revenue" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="cost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="profit" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="margin" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "JobPlStatement", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = {
"costCategory",
"revenue",
"cost",
"profit",
"margin"
})
public class JobPlStatement {
protected String costCategory;
protected Double revenue;
protected Double cost;
protected Double profit;
protected Double margin;
/**
* Gets the value of the costCategory property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCostCategory() {
return costCategory;
}
/**
* Sets the value of the costCategory property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCostCategory(String value) {
this.costCategory = value;
}
/**
* Gets the value of the revenue property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getRevenue() {
return revenue;
}
/**
* Sets the value of the revenue property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setRevenue(Double value) {
this.revenue = value;
}
/**
* Gets the value of the cost property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getCost() {
return cost;
}
/**
* Sets the value of the cost property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setCost(Double value) {
this.cost = value;
}
/**
* Gets the value of the profit property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getProfit() {
return profit;
}
/**
* Sets the value of the profit property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setProfit(Double value) {
this.profit = value;
}
/**
* Gets the value of the margin property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getMargin() {
return margin;
}
/**
* Sets the value of the margin property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setMargin(Double value) {
this.margin = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy