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

com.scene7.ipsapi.GetUserCharsParam Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

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


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="charField" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="includeInvalid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="includeInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="companyHandleArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}HandleArray" minOccurs="0"/>
 *         <element name="groupHandleArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}HandleArray" minOccurs="0"/>
 *         <element name="userRoleArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}StringArray" minOccurs="0"/>
 *         <element name="numChars" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "charField", "includeInvalid", "includeInactive", "companyHandleArray", "groupHandleArray", "userRoleArray", "numChars" }) @XmlRootElement(name = "getUserCharsParam") public class GetUserCharsParam { @XmlElement(required = true) protected String charField; protected Boolean includeInvalid; protected Boolean includeInactive; protected HandleArray companyHandleArray; protected HandleArray groupHandleArray; protected StringArray userRoleArray; protected Integer numChars; /** * Gets the value of the charField property. * * @return * possible object is * {@link String } * */ public String getCharField() { return charField; } /** * Sets the value of the charField property. * * @param value * allowed object is * {@link String } * */ public void setCharField(String value) { this.charField = value; } /** * Gets the value of the includeInvalid property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIncludeInvalid() { return includeInvalid; } /** * Sets the value of the includeInvalid property. * * @param value * allowed object is * {@link Boolean } * */ public void setIncludeInvalid(Boolean value) { this.includeInvalid = value; } /** * Gets the value of the includeInactive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIncludeInactive() { return includeInactive; } /** * Sets the value of the includeInactive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIncludeInactive(Boolean value) { this.includeInactive = value; } /** * Gets the value of the companyHandleArray property. * * @return * possible object is * {@link HandleArray } * */ public HandleArray getCompanyHandleArray() { return companyHandleArray; } /** * Sets the value of the companyHandleArray property. * * @param value * allowed object is * {@link HandleArray } * */ public void setCompanyHandleArray(HandleArray value) { this.companyHandleArray = value; } /** * Gets the value of the groupHandleArray property. * * @return * possible object is * {@link HandleArray } * */ public HandleArray getGroupHandleArray() { return groupHandleArray; } /** * Sets the value of the groupHandleArray property. * * @param value * allowed object is * {@link HandleArray } * */ public void setGroupHandleArray(HandleArray value) { this.groupHandleArray = value; } /** * Gets the value of the userRoleArray property. * * @return * possible object is * {@link StringArray } * */ public StringArray getUserRoleArray() { return userRoleArray; } /** * Sets the value of the userRoleArray property. * * @param value * allowed object is * {@link StringArray } * */ public void setUserRoleArray(StringArray value) { this.userRoleArray = value; } /** * Gets the value of the numChars property. * * @return * possible object is * {@link Integer } * */ public Integer getNumChars() { return numChars; } /** * Sets the value of the numChars property. * * @param value * allowed object is * {@link Integer } * */ public void setNumChars(Integer value) { this.numChars = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy