
com.google.api.ads.dfp.jaxws.v201511.VideoPositionTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dfp-appengine Show documentation
Show all versions of dfp-appengine Show documentation
DFP specific AppEngine components.
package com.google.api.ads.dfp.jaxws.v201511;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
*
* Represents the options for targetable positions within a video.
*
*
* Java class for VideoPositionTarget complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VideoPositionTarget">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="videoPosition" type="{https://www.google.com/apis/ads/publisher/v201511}VideoPosition" minOccurs="0"/>
* <element name="videoBumperType" type="{https://www.google.com/apis/ads/publisher/v201511}VideoBumperType" minOccurs="0"/>
* <element name="videoPositionWithinPod" type="{https://www.google.com/apis/ads/publisher/v201511}VideoPositionWithinPod" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VideoPositionTarget", propOrder = {
"videoPosition",
"videoBumperType",
"videoPositionWithinPod"
})
public class VideoPositionTarget {
protected VideoPosition videoPosition;
@XmlSchemaType(name = "string")
protected VideoBumperType videoBumperType;
protected VideoPositionWithinPod videoPositionWithinPod;
/**
* Gets the value of the videoPosition property.
*
* @return
* possible object is
* {@link VideoPosition }
*
*/
public VideoPosition getVideoPosition() {
return videoPosition;
}
/**
* Sets the value of the videoPosition property.
*
* @param value
* allowed object is
* {@link VideoPosition }
*
*/
public void setVideoPosition(VideoPosition value) {
this.videoPosition = value;
}
/**
* Gets the value of the videoBumperType property.
*
* @return
* possible object is
* {@link VideoBumperType }
*
*/
public VideoBumperType getVideoBumperType() {
return videoBumperType;
}
/**
* Sets the value of the videoBumperType property.
*
* @param value
* allowed object is
* {@link VideoBumperType }
*
*/
public void setVideoBumperType(VideoBumperType value) {
this.videoBumperType = value;
}
/**
* Gets the value of the videoPositionWithinPod property.
*
* @return
* possible object is
* {@link VideoPositionWithinPod }
*
*/
public VideoPositionWithinPod getVideoPositionWithinPod() {
return videoPositionWithinPod;
}
/**
* Sets the value of the videoPositionWithinPod property.
*
* @param value
* allowed object is
* {@link VideoPositionWithinPod }
*
*/
public void setVideoPositionWithinPod(VideoPositionWithinPod value) {
this.videoPositionWithinPod = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy