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

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

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.06.06 at 01:39:50 PM UTC 
//


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="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/2024-05-30-beta}HandleArray" minOccurs="0"/>
 *         <element name="groupHandleArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}HandleArray" minOccurs="0"/>
 *         <element name="userRoleArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}StringArray" minOccurs="0"/>
 *         <element name="charFilterField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="charFilter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sortBy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="recordsPerPage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="resultsPage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "includeInvalid", "includeInactive", "companyHandleArray", "groupHandleArray", "userRoleArray", "charFilterField", "charFilter", "sortBy", "recordsPerPage", "resultsPage" }) @XmlRootElement(name = "getUsersParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") public class GetUsersParam { @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Boolean includeInvalid; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Boolean includeInactive; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected HandleArray companyHandleArray; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected HandleArray groupHandleArray; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected StringArray userRoleArray; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String charFilterField; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String charFilter; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String sortBy; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Integer recordsPerPage; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Integer resultsPage; /** * 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 charFilterField property. * * @return * possible object is * {@link String } * */ public String getCharFilterField() { return charFilterField; } /** * Sets the value of the charFilterField property. * * @param value * allowed object is * {@link String } * */ public void setCharFilterField(String value) { this.charFilterField = value; } /** * Gets the value of the charFilter property. * * @return * possible object is * {@link String } * */ public String getCharFilter() { return charFilter; } /** * Sets the value of the charFilter property. * * @param value * allowed object is * {@link String } * */ public void setCharFilter(String value) { this.charFilter = value; } /** * Gets the value of the sortBy property. * * @return * possible object is * {@link String } * */ public String getSortBy() { return sortBy; } /** * Sets the value of the sortBy property. * * @param value * allowed object is * {@link String } * */ public void setSortBy(String value) { this.sortBy = value; } /** * Gets the value of the recordsPerPage property. * * @return * possible object is * {@link Integer } * */ public Integer getRecordsPerPage() { return recordsPerPage; } /** * Sets the value of the recordsPerPage property. * * @param value * allowed object is * {@link Integer } * */ public void setRecordsPerPage(Integer value) { this.recordsPerPage = value; } /** * Gets the value of the resultsPage property. * * @return * possible object is * {@link Integer } * */ public Integer getResultsPage() { return resultsPage; } /** * Sets the value of the resultsPage property. * * @param value * allowed object is * {@link Integer } * */ public void setResultsPage(Integer value) { this.resultsPage = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy