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

com.google.api.ads.dfp.jaxws.v201605.LiveStreamEvent Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201605;

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             A {@code LiveStreamEvent} encapsulates all the information necessary
 *             to enable DAI (Dynamic Ad Insertion) into a live video stream.
 *             
 *             

This includes information such as the start and expected end time of * the event, the URL of the actual content for DFP to pull and insert ads into, * as well as the metadata necessary to generate ad requests during the event. * * *

Java class for LiveStreamEvent complex type. * *

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

 * <complexType name="LiveStreamEvent">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="status" type="{https://www.google.com/apis/ads/publisher/v201605}LiveStreamEventStatus" minOccurs="0"/>
 *         <element name="creationDateTime" type="{https://www.google.com/apis/ads/publisher/v201605}DateTime" minOccurs="0"/>
 *         <element name="lastModifiedDateTime" type="{https://www.google.com/apis/ads/publisher/v201605}DateTime" minOccurs="0"/>
 *         <element name="startDateTime" type="{https://www.google.com/apis/ads/publisher/v201605}DateTime" minOccurs="0"/>
 *         <element name="endDateTime" type="{https://www.google.com/apis/ads/publisher/v201605}DateTime" minOccurs="0"/>
 *         <element name="totalEstimatedConcurrentUsers" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="contentUrls" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="adTags" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="liveStreamEventCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="authenticationService" type="{https://www.google.com/apis/ads/publisher/v201605}AuthenticationService" minOccurs="0"/>
 *         <element name="authenticationKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="dvrWindowSeconds" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LiveStreamEvent", propOrder = { "id", "name", "description", "status", "creationDateTime", "lastModifiedDateTime", "startDateTime", "endDateTime", "totalEstimatedConcurrentUsers", "contentUrls", "adTags", "liveStreamEventCode", "authenticationService", "authenticationKey", "dvrWindowSeconds" }) public class LiveStreamEvent { protected Long id; protected String name; protected String description; @XmlSchemaType(name = "string") protected LiveStreamEventStatus status; protected DateTime creationDateTime; protected DateTime lastModifiedDateTime; protected DateTime startDateTime; protected DateTime endDateTime; protected Long totalEstimatedConcurrentUsers; protected List contentUrls; protected List adTags; protected String liveStreamEventCode; @XmlSchemaType(name = "string") protected AuthenticationService authenticationService; protected String authenticationKey; protected Integer dvrWindowSeconds; /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = 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 description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link LiveStreamEventStatus } * */ public LiveStreamEventStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link LiveStreamEventStatus } * */ public void setStatus(LiveStreamEventStatus value) { this.status = value; } /** * Gets the value of the creationDateTime property. * * @return * possible object is * {@link DateTime } * */ public DateTime getCreationDateTime() { return creationDateTime; } /** * Sets the value of the creationDateTime property. * * @param value * allowed object is * {@link DateTime } * */ public void setCreationDateTime(DateTime value) { this.creationDateTime = value; } /** * Gets the value of the lastModifiedDateTime property. * * @return * possible object is * {@link DateTime } * */ public DateTime getLastModifiedDateTime() { return lastModifiedDateTime; } /** * Sets the value of the lastModifiedDateTime property. * * @param value * allowed object is * {@link DateTime } * */ public void setLastModifiedDateTime(DateTime value) { this.lastModifiedDateTime = value; } /** * Gets the value of the startDateTime property. * * @return * possible object is * {@link DateTime } * */ public DateTime getStartDateTime() { return startDateTime; } /** * Sets the value of the startDateTime property. * * @param value * allowed object is * {@link DateTime } * */ public void setStartDateTime(DateTime value) { this.startDateTime = value; } /** * Gets the value of the endDateTime property. * * @return * possible object is * {@link DateTime } * */ public DateTime getEndDateTime() { return endDateTime; } /** * Sets the value of the endDateTime property. * * @param value * allowed object is * {@link DateTime } * */ public void setEndDateTime(DateTime value) { this.endDateTime = value; } /** * Gets the value of the totalEstimatedConcurrentUsers property. * * @return * possible object is * {@link Long } * */ public Long getTotalEstimatedConcurrentUsers() { return totalEstimatedConcurrentUsers; } /** * Sets the value of the totalEstimatedConcurrentUsers property. * * @param value * allowed object is * {@link Long } * */ public void setTotalEstimatedConcurrentUsers(Long value) { this.totalEstimatedConcurrentUsers = value; } /** * Gets the value of the contentUrls 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 contentUrls property. * *

* For example, to add a new item, do as follows: *

     *    getContentUrls().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getContentUrls() { if (contentUrls == null) { contentUrls = new ArrayList(); } return this.contentUrls; } /** * Gets the value of the adTags 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 adTags property. * *

* For example, to add a new item, do as follows: *

     *    getAdTags().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAdTags() { if (adTags == null) { adTags = new ArrayList(); } return this.adTags; } /** * Gets the value of the liveStreamEventCode property. * * @return * possible object is * {@link String } * */ public String getLiveStreamEventCode() { return liveStreamEventCode; } /** * Sets the value of the liveStreamEventCode property. * * @param value * allowed object is * {@link String } * */ public void setLiveStreamEventCode(String value) { this.liveStreamEventCode = value; } /** * Gets the value of the authenticationService property. * * @return * possible object is * {@link AuthenticationService } * */ public AuthenticationService getAuthenticationService() { return authenticationService; } /** * Sets the value of the authenticationService property. * * @param value * allowed object is * {@link AuthenticationService } * */ public void setAuthenticationService(AuthenticationService value) { this.authenticationService = value; } /** * Gets the value of the authenticationKey property. * * @return * possible object is * {@link String } * */ public String getAuthenticationKey() { return authenticationKey; } /** * Sets the value of the authenticationKey property. * * @param value * allowed object is * {@link String } * */ public void setAuthenticationKey(String value) { this.authenticationKey = value; } /** * Gets the value of the dvrWindowSeconds property. * * @return * possible object is * {@link Integer } * */ public Integer getDvrWindowSeconds() { return dvrWindowSeconds; } /** * Sets the value of the dvrWindowSeconds property. * * @param value * allowed object is * {@link Integer } * */ public void setDvrWindowSeconds(Integer value) { this.dvrWindowSeconds = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy