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

com.scene7.ipsapi.MediaOptions Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
//
// 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.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/2024-05-30-beta}HandleArray" minOccurs="0"/>
 *         <element name="videoEncodingArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}VideoEncodingArray" minOccurs="0"/>
 *         <element name="videoSmartCropArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}VideoSmartCropArray" minOccurs="0"/>
 *         <element name="videoSmartCropSampleRate" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="avsEncodingArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-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/2024-05-30-beta}ThumbnailOptions" minOccurs="0"/>
 *         <element name="cmafConformance" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MediaOptions", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = { "videoEncodingPresetsArray", "videoEncodingArray", "videoSmartCropArray", "videoSmartCropSampleRate", "avsEncodingArray", "generateThumbnail", "thumbnailOptions", "cmafConformance" }) public class MediaOptions { @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected HandleArray videoEncodingPresetsArray; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected VideoEncodingArray videoEncodingArray; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected VideoSmartCropArray videoSmartCropArray; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Integer videoSmartCropSampleRate; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected AvsEncodingArray avsEncodingArray; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Boolean generateThumbnail; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected ThumbnailOptions thumbnailOptions; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Boolean cmafConformance; /** * 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 videoSmartCropArray property. * * @return * possible object is * {@link VideoSmartCropArray } * */ public VideoSmartCropArray getVideoSmartCropArray() { return videoSmartCropArray; } /** * Sets the value of the videoSmartCropArray property. * * @param value * allowed object is * {@link VideoSmartCropArray } * */ public void setVideoSmartCropArray(VideoSmartCropArray value) { this.videoSmartCropArray = value; } /** * Gets the value of the videoSmartCropSampleRate property. * * @return * possible object is * {@link Integer } * */ public Integer getVideoSmartCropSampleRate() { return videoSmartCropSampleRate; } /** * Sets the value of the videoSmartCropSampleRate property. * * @param value * allowed object is * {@link Integer } * */ public void setVideoSmartCropSampleRate(Integer value) { this.videoSmartCropSampleRate = 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; } /** * Gets the value of the cmafConformance property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCmafConformance() { return cmafConformance; } /** * Sets the value of the cmafConformance property. * * @param value * allowed object is * {@link Boolean } * */ public void setCmafConformance(Boolean value) { this.cmafConformance = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy