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

com.scene7.ipsapi.UploadPostParam 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="jobName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="jobHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="destFolder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="endJob" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="uploadParams" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}UploadPostJob" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "companyHandle", "jobName", "jobHandle", "locale", "description", "destFolder", "fileName", "endJob", "uploadParams" }) @XmlRootElement(name = "uploadPostParam") public class UploadPostParam { @XmlElement(required = true) protected String companyHandle; protected String jobName; protected String jobHandle; protected String locale; protected String description; protected String destFolder; protected String fileName; protected Boolean endJob; protected UploadPostJob uploadParams; /** * 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 jobName property. * * @return * possible object is * {@link String } * */ public String getJobName() { return jobName; } /** * Sets the value of the jobName property. * * @param value * allowed object is * {@link String } * */ public void setJobName(String value) { this.jobName = 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 locale property. * * @return * possible object is * {@link String } * */ public String getLocale() { return locale; } /** * Sets the value of the locale property. * * @param value * allowed object is * {@link String } * */ public void setLocale(String value) { this.locale = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the destFolder property. * * @return * possible object is * {@link String } * */ public String getDestFolder() { return destFolder; } /** * Sets the value of the destFolder property. * * @param value * allowed object is * {@link String } * */ public void setDestFolder(String value) { this.destFolder = value; } /** * Gets the value of the fileName property. * * @return * possible object is * {@link String } * */ public String getFileName() { return fileName; } /** * Sets the value of the fileName property. * * @param value * allowed object is * {@link String } * */ public void setFileName(String value) { this.fileName = value; } /** * Gets the value of the endJob property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEndJob() { return endJob; } /** * Sets the value of the endJob property. * * @param value * allowed object is * {@link Boolean } * */ public void setEndJob(Boolean value) { this.endJob = value; } /** * Gets the value of the uploadParams property. * * @return * possible object is * {@link UploadPostJob } * */ public UploadPostJob getUploadParams() { return uploadParams; } /** * Sets the value of the uploadParams property. * * @param value * allowed object is * {@link UploadPostJob } * */ public void setUploadParams(UploadPostJob value) { this.uploadParams = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy