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

com.bytekast.netsuite.client.DemandPlan 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for DemandPlan complex type. * *

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

 * <complexType name="DemandPlan">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="calculatedQuantity" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="periodDemandPlanList" type="{urn:demandplanning_2017_1.transactions.webservices.netsuite.com}PeriodDemandPlanList" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DemandPlan", namespace = "urn:demandplanning_2017_1.transactions.webservices.netsuite.com", propOrder = { "startDate", "endDate", "calculatedQuantity", "periodDemandPlanList" }) public class DemandPlan implements Serializable { @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startDate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar endDate; protected Double calculatedQuantity; protected PeriodDemandPlanList periodDemandPlanList; /** * Gets the value of the startDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartDate(XMLGregorianCalendar value) { this.startDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEndDate(XMLGregorianCalendar value) { this.endDate = value; } /** * Gets the value of the calculatedQuantity property. * * @return * possible object is * {@link Double } * */ public Double getCalculatedQuantity() { return calculatedQuantity; } /** * Sets the value of the calculatedQuantity property. * * @param value * allowed object is * {@link Double } * */ public void setCalculatedQuantity(Double value) { this.calculatedQuantity = value; } /** * Gets the value of the periodDemandPlanList property. * * @return * possible object is * {@link PeriodDemandPlanList } * */ public PeriodDemandPlanList getPeriodDemandPlanList() { return periodDemandPlanList; } /** * Sets the value of the periodDemandPlanList property. * * @param value * allowed object is * {@link PeriodDemandPlanList } * */ public void setPeriodDemandPlanList(PeriodDemandPlanList value) { this.periodDemandPlanList = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy