
com.google.api.ads.dfp.jaxws.v201511.CreativeWrapper 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;
/**
*
* A {@code CreativeWrapper} allows the wrapping of HTML snippets to be
* served along with {@code Creative} objects.
*
* Creative wrappers must be associated with a
* {@link LabelType#CREATIVE_WRAPPER} label and applied to ad units by
* {@link AdUnit#appliedLabels}.
*
*
*
Java class for CreativeWrapper complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CreativeWrapper">
* <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="labelId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="header" type="{https://www.google.com/apis/ads/publisher/v201511}CreativeWrapperHtmlSnippet" minOccurs="0"/>
* <element name="footer" type="{https://www.google.com/apis/ads/publisher/v201511}CreativeWrapperHtmlSnippet" minOccurs="0"/>
* <element name="ordering" type="{https://www.google.com/apis/ads/publisher/v201511}CreativeWrapperOrdering" minOccurs="0"/>
* <element name="status" type="{https://www.google.com/apis/ads/publisher/v201511}CreativeWrapperStatus" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CreativeWrapper", propOrder = {
"id",
"labelId",
"header",
"footer",
"ordering",
"status"
})
public class CreativeWrapper {
protected Long id;
protected Long labelId;
protected CreativeWrapperHtmlSnippet header;
protected CreativeWrapperHtmlSnippet footer;
@XmlSchemaType(name = "string")
protected CreativeWrapperOrdering ordering;
@XmlSchemaType(name = "string")
protected CreativeWrapperStatus status;
/**
* 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 labelId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getLabelId() {
return labelId;
}
/**
* Sets the value of the labelId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setLabelId(Long value) {
this.labelId = value;
}
/**
* Gets the value of the header property.
*
* @return
* possible object is
* {@link CreativeWrapperHtmlSnippet }
*
*/
public CreativeWrapperHtmlSnippet getHeader() {
return header;
}
/**
* Sets the value of the header property.
*
* @param value
* allowed object is
* {@link CreativeWrapperHtmlSnippet }
*
*/
public void setHeader(CreativeWrapperHtmlSnippet value) {
this.header = value;
}
/**
* Gets the value of the footer property.
*
* @return
* possible object is
* {@link CreativeWrapperHtmlSnippet }
*
*/
public CreativeWrapperHtmlSnippet getFooter() {
return footer;
}
/**
* Sets the value of the footer property.
*
* @param value
* allowed object is
* {@link CreativeWrapperHtmlSnippet }
*
*/
public void setFooter(CreativeWrapperHtmlSnippet value) {
this.footer = value;
}
/**
* Gets the value of the ordering property.
*
* @return
* possible object is
* {@link CreativeWrapperOrdering }
*
*/
public CreativeWrapperOrdering getOrdering() {
return ordering;
}
/**
* Sets the value of the ordering property.
*
* @param value
* allowed object is
* {@link CreativeWrapperOrdering }
*
*/
public void setOrdering(CreativeWrapperOrdering value) {
this.ordering = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link CreativeWrapperStatus }
*
*/
public CreativeWrapperStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link CreativeWrapperStatus }
*
*/
public void setStatus(CreativeWrapperStatus value) {
this.status = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy