
com.google.api.ads.dfp.jaxws.v201602.SwiffyFallbackAsset Maven / Gradle / Ivy
Show all versions of dfp-appengine Show documentation
package com.google.api.ads.dfp.jaxws.v201602;
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 fallback swiffy asset used for flash creatives.
*
*
* Java class for SwiffyFallbackAsset complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SwiffyFallbackAsset">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="asset" type="{https://www.google.com/apis/ads/publisher/v201602}CreativeAsset" minOccurs="0"/>
* <element name="html5Features" type="{https://www.google.com/apis/ads/publisher/v201602}Html5Feature" maxOccurs="unbounded" minOccurs="0"/>
* <element name="localizedInfoMessages" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SwiffyFallbackAsset", propOrder = {
"asset",
"html5Features",
"localizedInfoMessages"
})
public class SwiffyFallbackAsset {
protected CreativeAsset asset;
@XmlSchemaType(name = "string")
protected List html5Features;
protected List localizedInfoMessages;
/**
* Gets the value of the asset property.
*
* @return
* possible object is
* {@link CreativeAsset }
*
*/
public CreativeAsset getAsset() {
return asset;
}
/**
* Sets the value of the asset property.
*
* @param value
* allowed object is
* {@link CreativeAsset }
*
*/
public void setAsset(CreativeAsset value) {
this.asset = value;
}
/**
* Gets the value of the html5Features 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 html5Features property.
*
*
* For example, to add a new item, do as follows:
*
* getHtml5Features().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Html5Feature }
*
*
*/
public List getHtml5Features() {
if (html5Features == null) {
html5Features = new ArrayList();
}
return this.html5Features;
}
/**
* Gets the value of the localizedInfoMessages 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 localizedInfoMessages property.
*
*
* For example, to add a new item, do as follows:
*
* getLocalizedInfoMessages().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getLocalizedInfoMessages() {
if (localizedInfoMessages == null) {
localizedInfoMessages = new ArrayList();
}
return this.localizedInfoMessages;
}
}