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

com.scene7.ipsapi.UpdateVignettePublishFormatParam 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="vignetteFormatHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="targetWidth" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="targetHeight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="createPyramid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="thumbWidth" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="saveAsVersion" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="sizeSuffixSeparator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sharpen" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="usmAmount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="usmRadius" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="usmThreshold" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "companyHandle", "vignetteFormatHandle", "name", "targetWidth", "targetHeight", "createPyramid", "thumbWidth", "saveAsVersion", "sizeSuffixSeparator", "sharpen", "usmAmount", "usmRadius", "usmThreshold" }) @XmlRootElement(name = "updateVignettePublishFormatParam") public class UpdateVignettePublishFormatParam { @XmlElement(required = true) protected String companyHandle; @XmlElement(required = true) protected String vignetteFormatHandle; protected String name; protected Integer targetWidth; protected Integer targetHeight; protected Boolean createPyramid; protected Integer thumbWidth; protected Integer saveAsVersion; protected String sizeSuffixSeparator; protected Integer sharpen; protected Double usmAmount; protected Double usmRadius; protected Integer usmThreshold; /** * 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 vignetteFormatHandle property. * * @return * possible object is * {@link String } * */ public String getVignetteFormatHandle() { return vignetteFormatHandle; } /** * Sets the value of the vignetteFormatHandle property. * * @param value * allowed object is * {@link String } * */ public void setVignetteFormatHandle(String value) { this.vignetteFormatHandle = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the targetWidth property. * * @return * possible object is * {@link Integer } * */ public Integer getTargetWidth() { return targetWidth; } /** * Sets the value of the targetWidth property. * * @param value * allowed object is * {@link Integer } * */ public void setTargetWidth(Integer value) { this.targetWidth = value; } /** * Gets the value of the targetHeight property. * * @return * possible object is * {@link Integer } * */ public Integer getTargetHeight() { return targetHeight; } /** * Sets the value of the targetHeight property. * * @param value * allowed object is * {@link Integer } * */ public void setTargetHeight(Integer value) { this.targetHeight = value; } /** * Gets the value of the createPyramid property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCreatePyramid() { return createPyramid; } /** * Sets the value of the createPyramid property. * * @param value * allowed object is * {@link Boolean } * */ public void setCreatePyramid(Boolean value) { this.createPyramid = value; } /** * Gets the value of the thumbWidth property. * * @return * possible object is * {@link Integer } * */ public Integer getThumbWidth() { return thumbWidth; } /** * Sets the value of the thumbWidth property. * * @param value * allowed object is * {@link Integer } * */ public void setThumbWidth(Integer value) { this.thumbWidth = value; } /** * Gets the value of the saveAsVersion property. * * @return * possible object is * {@link Integer } * */ public Integer getSaveAsVersion() { return saveAsVersion; } /** * Sets the value of the saveAsVersion property. * * @param value * allowed object is * {@link Integer } * */ public void setSaveAsVersion(Integer value) { this.saveAsVersion = value; } /** * Gets the value of the sizeSuffixSeparator property. * * @return * possible object is * {@link String } * */ public String getSizeSuffixSeparator() { return sizeSuffixSeparator; } /** * Sets the value of the sizeSuffixSeparator property. * * @param value * allowed object is * {@link String } * */ public void setSizeSuffixSeparator(String value) { this.sizeSuffixSeparator = value; } /** * Gets the value of the sharpen property. * * @return * possible object is * {@link Integer } * */ public Integer getSharpen() { return sharpen; } /** * Sets the value of the sharpen property. * * @param value * allowed object is * {@link Integer } * */ public void setSharpen(Integer value) { this.sharpen = value; } /** * Gets the value of the usmAmount property. * * @return * possible object is * {@link Double } * */ public Double getUsmAmount() { return usmAmount; } /** * Sets the value of the usmAmount property. * * @param value * allowed object is * {@link Double } * */ public void setUsmAmount(Double value) { this.usmAmount = value; } /** * Gets the value of the usmRadius property. * * @return * possible object is * {@link Double } * */ public Double getUsmRadius() { return usmRadius; } /** * Sets the value of the usmRadius property. * * @param value * allowed object is * {@link Double } * */ public void setUsmRadius(Double value) { this.usmRadius = value; } /** * Gets the value of the usmThreshold property. * * @return * possible object is * {@link Integer } * */ public Integer getUsmThreshold() { return usmThreshold; } /** * Sets the value of the usmThreshold property. * * @param value * allowed object is * {@link Integer } * */ public void setUsmThreshold(Integer value) { this.usmThreshold = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy