
tsg.ns.wsdl.coop.JobPercentCompleteOverride 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 JobPercentCompleteOverride complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="JobPercentCompleteOverride">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="period" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="percent" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "JobPercentCompleteOverride", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = {
"period",
"percent",
"comments"
})
public class JobPercentCompleteOverride {
protected RecordRef period;
protected Double percent;
protected String comments;
/**
* Gets the value of the period property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getPeriod() {
return period;
}
/**
* Sets the value of the period property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setPeriod(RecordRef value) {
this.period = value;
}
/**
* Gets the value of the percent property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getPercent() {
return percent;
}
/**
* Sets the value of the percent property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setPercent(Double value) {
this.percent = value;
}
/**
* Gets the value of the comments property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComments() {
return comments;
}
/**
* Sets the value of the comments property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComments(String value) {
this.comments = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy