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

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


/**
 * 

Java class for SearchDateField complex type. * *

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

 * <complexType name="SearchDateField">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="predefinedSearchValue" type="{urn:types.core_2017_1.platform.webservices.netsuite.com}SearchDate" minOccurs="0"/>
 *         <element name="searchValue" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="searchValue2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="operator" type="{urn:types.core_2017_1.platform.webservices.netsuite.com}SearchDateFieldOperator" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchDateField", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "predefinedSearchValue", "searchValue", "searchValue2" }) public class SearchDateField implements Serializable { @XmlSchemaType(name = "string") protected SearchDate predefinedSearchValue; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar searchValue; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar searchValue2; @XmlAttribute(name = "operator") protected SearchDateFieldOperator operator; /** * Gets the value of the predefinedSearchValue property. * * @return * possible object is * {@link SearchDate } * */ public SearchDate getPredefinedSearchValue() { return predefinedSearchValue; } /** * Sets the value of the predefinedSearchValue property. * * @param value * allowed object is * {@link SearchDate } * */ public void setPredefinedSearchValue(SearchDate value) { this.predefinedSearchValue = value; } /** * Gets the value of the searchValue property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSearchValue() { return searchValue; } /** * Sets the value of the searchValue property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSearchValue(XMLGregorianCalendar value) { this.searchValue = value; } /** * Gets the value of the searchValue2 property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSearchValue2() { return searchValue2; } /** * Sets the value of the searchValue2 property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSearchValue2(XMLGregorianCalendar value) { this.searchValue2 = value; } /** * Gets the value of the operator property. * * @return * possible object is * {@link SearchDateFieldOperator } * */ public SearchDateFieldOperator getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link SearchDateFieldOperator } * */ public void setOperator(SearchDateFieldOperator value) { this.operator = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy