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

com.scene7.ipsapi.MediaOptions 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.XmlType;


/**
 * 

Java class for MediaOptions complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="MediaOptions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="videoEncodingPresetsArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}HandleArray" minOccurs="0"/>
 *         <element name="videoEncodingArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}VideoEncodingArray" minOccurs="0"/>
 *         <element name="avsEncodingArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AvsEncodingArray" minOccurs="0"/>
 *         <element name="generateThumbnail" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="thumbnailOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}ThumbnailOptions" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MediaOptions", propOrder = { "videoEncodingPresetsArray", "videoEncodingArray", "avsEncodingArray", "generateThumbnail", "thumbnailOptions" }) public class MediaOptions { protected HandleArray videoEncodingPresetsArray; protected VideoEncodingArray videoEncodingArray; protected AvsEncodingArray avsEncodingArray; protected Boolean generateThumbnail; protected ThumbnailOptions thumbnailOptions; /** * Gets the value of the videoEncodingPresetsArray property. * * @return * possible object is * {@link HandleArray } * */ public HandleArray getVideoEncodingPresetsArray() { return videoEncodingPresetsArray; } /** * Sets the value of the videoEncodingPresetsArray property. * * @param value * allowed object is * {@link HandleArray } * */ public void setVideoEncodingPresetsArray(HandleArray value) { this.videoEncodingPresetsArray = value; } /** * Gets the value of the videoEncodingArray property. * * @return * possible object is * {@link VideoEncodingArray } * */ public VideoEncodingArray getVideoEncodingArray() { return videoEncodingArray; } /** * Sets the value of the videoEncodingArray property. * * @param value * allowed object is * {@link VideoEncodingArray } * */ public void setVideoEncodingArray(VideoEncodingArray value) { this.videoEncodingArray = value; } /** * Gets the value of the avsEncodingArray property. * * @return * possible object is * {@link AvsEncodingArray } * */ public AvsEncodingArray getAvsEncodingArray() { return avsEncodingArray; } /** * Sets the value of the avsEncodingArray property. * * @param value * allowed object is * {@link AvsEncodingArray } * */ public void setAvsEncodingArray(AvsEncodingArray value) { this.avsEncodingArray = value; } /** * Gets the value of the generateThumbnail property. * * @return * possible object is * {@link Boolean } * */ public Boolean isGenerateThumbnail() { return generateThumbnail; } /** * Sets the value of the generateThumbnail property. * * @param value * allowed object is * {@link Boolean } * */ public void setGenerateThumbnail(Boolean value) { this.generateThumbnail = value; } /** * Gets the value of the thumbnailOptions property. * * @return * possible object is * {@link ThumbnailOptions } * */ public ThumbnailOptions getThumbnailOptions() { return thumbnailOptions; } /** * Sets the value of the thumbnailOptions property. * * @param value * allowed object is * {@link ThumbnailOptions } * */ public void setThumbnailOptions(ThumbnailOptions value) { this.thumbnailOptions = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy