
tsg.ns.wsdl.coop.ItemGroupHierarchyVersions Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ItemGroupHierarchyVersions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ItemGroupHierarchyVersions">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="isIncluded" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="hierarchyVersion" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="hierarchyNode" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ItemGroupHierarchyVersions", propOrder = {
"isIncluded",
"hierarchyVersion",
"startDate",
"endDate",
"hierarchyNode"
})
public class ItemGroupHierarchyVersions {
protected Boolean isIncluded;
protected RecordRef hierarchyVersion;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startDate;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endDate;
protected RecordRef hierarchyNode;
/**
* Gets the value of the isIncluded property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsIncluded() {
return isIncluded;
}
/**
* Sets the value of the isIncluded property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsIncluded(Boolean value) {
this.isIncluded = value;
}
/**
* Gets the value of the hierarchyVersion property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getHierarchyVersion() {
return hierarchyVersion;
}
/**
* Sets the value of the hierarchyVersion property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setHierarchyVersion(RecordRef value) {
this.hierarchyVersion = value;
}
/**
* 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 hierarchyNode property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getHierarchyNode() {
return hierarchyNode;
}
/**
* Sets the value of the hierarchyNode property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setHierarchyNode(RecordRef value) {
this.hierarchyNode = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy