
com.google.api.ads.dfp.jaxws.v201505.VideoPositionTargeting Maven / Gradle / Ivy
Show all versions of dfp-appengine Show documentation
package com.google.api.ads.dfp.jaxws.v201505;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
*
* Represents positions within and around a video where ads can be targeted to.
*
* Example positions could be {@code pre-roll} (before the video plays),
* {@code post-roll} (after a video has completed playback) and
* {@code mid-roll} (during video playback).
*
*
*
Java class for VideoPositionTargeting complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VideoPositionTargeting">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="targetedPositions" type="{https://www.google.com/apis/ads/publisher/v201505}VideoPositionTarget" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VideoPositionTargeting", propOrder = {
"targetedPositions"
})
public class VideoPositionTargeting {
protected List targetedPositions;
/**
* Gets the value of the targetedPositions property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the targetedPositions property.
*
*
* For example, to add a new item, do as follows:
*
* getTargetedPositions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VideoPositionTarget }
*
*
*/
public List getTargetedPositions() {
if (targetedPositions == null) {
targetedPositions = new ArrayList();
}
return this.targetedPositions;
}
}