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

com.omgm.speedy.eps.soap.model.ParamClientSearch Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for paramClientSearch complex type. * *

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

 * <complexType name="paramClientSearch">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="clientId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="clientName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="objectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="siteId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="userDefTag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "paramClientSearch", propOrder = { "clientId", "clientName", "objectName", "phone", "siteId", "userDefTag" }) public class ParamClientSearch { protected Long clientId; protected String clientName; protected String objectName; protected String phone; protected Long siteId; protected String userDefTag; /** * Gets the value of the clientId property. * * @return * possible object is * {@link Long } * */ public Long getClientId() { return clientId; } /** * Sets the value of the clientId property. * * @param value * allowed object is * {@link Long } * */ public void setClientId(Long value) { this.clientId = value; } /** * Gets the value of the clientName property. * * @return * possible object is * {@link String } * */ public String getClientName() { return clientName; } /** * Sets the value of the clientName property. * * @param value * allowed object is * {@link String } * */ public void setClientName(String value) { this.clientName = value; } /** * Gets the value of the objectName property. * * @return * possible object is * {@link String } * */ public String getObjectName() { return objectName; } /** * Sets the value of the objectName property. * * @param value * allowed object is * {@link String } * */ public void setObjectName(String value) { this.objectName = value; } /** * Gets the value of the phone property. * * @return * possible object is * {@link String } * */ public String getPhone() { return phone; } /** * Sets the value of the phone property. * * @param value * allowed object is * {@link String } * */ public void setPhone(String value) { this.phone = value; } /** * Gets the value of the siteId property. * * @return * possible object is * {@link Long } * */ public Long getSiteId() { return siteId; } /** * Sets the value of the siteId property. * * @param value * allowed object is * {@link Long } * */ public void setSiteId(Long value) { this.siteId = value; } /** * Gets the value of the userDefTag property. * * @return * possible object is * {@link String } * */ public String getUserDefTag() { return userDefTag; } /** * Sets the value of the userDefTag property. * * @param value * allowed object is * {@link String } * */ public void setUserDefTag(String value) { this.userDefTag = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy