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

com.scene7.ipsapi.GetJobLogDetailsParam 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="companyHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="jobHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="originalName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="logTypeArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}StringArray" 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"/>
 *         <element name="sortBy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sortDirection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "companyHandle", "jobHandle", "originalName", "logTypeArray", "recordsPerPage", "resultsPage", "sortBy", "sortDirection" }) @XmlRootElement(name = "getJobLogDetailsParam") public class GetJobLogDetailsParam { @XmlElement(required = true) protected String companyHandle; protected String jobHandle; protected String originalName; protected StringArray logTypeArray; protected Integer recordsPerPage; protected Integer resultsPage; protected String sortBy; protected String sortDirection; /** * Gets the value of the companyHandle property. * * @return * possible object is * {@link String } * */ public String getCompanyHandle() { return companyHandle; } /** * Sets the value of the companyHandle property. * * @param value * allowed object is * {@link String } * */ public void setCompanyHandle(String value) { this.companyHandle = value; } /** * Gets the value of the jobHandle property. * * @return * possible object is * {@link String } * */ public String getJobHandle() { return jobHandle; } /** * Sets the value of the jobHandle property. * * @param value * allowed object is * {@link String } * */ public void setJobHandle(String value) { this.jobHandle = value; } /** * Gets the value of the originalName property. * * @return * possible object is * {@link String } * */ public String getOriginalName() { return originalName; } /** * Sets the value of the originalName property. * * @param value * allowed object is * {@link String } * */ public void setOriginalName(String value) { this.originalName = value; } /** * Gets the value of the logTypeArray property. * * @return * possible object is * {@link StringArray } * */ public StringArray getLogTypeArray() { return logTypeArray; } /** * Sets the value of the logTypeArray property. * * @param value * allowed object is * {@link StringArray } * */ public void setLogTypeArray(StringArray value) { this.logTypeArray = 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; } /** * 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 sortDirection property. * * @return * possible object is * {@link String } * */ public String getSortDirection() { return sortDirection; } /** * Sets the value of the sortDirection property. * * @param value * allowed object is * {@link String } * */ public void setSortDirection(String value) { this.sortDirection = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy