com.scene7.ipsapi.GetJobLogsParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* 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" minOccurs="0"/>
* <element name="userHandle" 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="sortDirection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="numRows" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"companyHandle",
"userHandle",
"sortBy",
"sortDirection",
"startDate",
"endDate",
"numRows"
})
@XmlRootElement(name = "getJobLogsParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class GetJobLogsParam {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String companyHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String userHandle;
@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 String sortDirection;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startDate;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endDate;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Integer numRows;
/**
* 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 userHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserHandle() {
return userHandle;
}
/**
* Sets the value of the userHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserHandle(String value) {
this.userHandle = 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;
}
/**
* Gets the value of the startDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartDate() {
return startDate;
}
/**
* Sets the value of the startDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartDate(XMLGregorianCalendar value) {
this.startDate = value;
}
/**
* Gets the value of the endDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndDate(XMLGregorianCalendar value) {
this.endDate = value;
}
/**
* Gets the value of the numRows property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumRows() {
return numRows;
}
/**
* Sets the value of the numRows property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumRows(Integer value) {
this.numRows = value;
}
}