All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bytekast.netsuite.client.JobMilestones Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for JobMilestones complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="JobMilestones">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="milestoneName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="milestoneOrder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="milestoneEstComplete" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="milestoneCompleted" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="milestoneComments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JobMilestones", namespace = "urn:relationships_2017_1.lists.webservices.netsuite.com", propOrder = { "milestoneName", "milestoneOrder", "milestoneEstComplete", "milestoneCompleted", "milestoneComments" }) public class JobMilestones implements Serializable { protected String milestoneName; protected String milestoneOrder; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar milestoneEstComplete; protected Boolean milestoneCompleted; protected String milestoneComments; /** * Gets the value of the milestoneName property. * * @return * possible object is * {@link String } * */ public String getMilestoneName() { return milestoneName; } /** * Sets the value of the milestoneName property. * * @param value * allowed object is * {@link String } * */ public void setMilestoneName(String value) { this.milestoneName = value; } /** * Gets the value of the milestoneOrder property. * * @return * possible object is * {@link String } * */ public String getMilestoneOrder() { return milestoneOrder; } /** * Sets the value of the milestoneOrder property. * * @param value * allowed object is * {@link String } * */ public void setMilestoneOrder(String value) { this.milestoneOrder = value; } /** * Gets the value of the milestoneEstComplete property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMilestoneEstComplete() { return milestoneEstComplete; } /** * Sets the value of the milestoneEstComplete property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMilestoneEstComplete(XMLGregorianCalendar value) { this.milestoneEstComplete = value; } /** * Gets the value of the milestoneCompleted property. * * @return * possible object is * {@link Boolean } * */ public Boolean isMilestoneCompleted() { return milestoneCompleted; } /** * Sets the value of the milestoneCompleted property. * * @param value * allowed object is * {@link Boolean } * */ public void setMilestoneCompleted(Boolean value) { this.milestoneCompleted = value; } /** * Gets the value of the milestoneComments property. * * @return * possible object is * {@link String } * */ public String getMilestoneComments() { return milestoneComments; } /** * Sets the value of the milestoneComments property. * * @param value * allowed object is * {@link String } * */ public void setMilestoneComments(String value) { this.milestoneComments = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy