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

com.google.api.ads.dfp.jaxws.v201602.CreativeWrapper Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

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

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/v201602}CreativeWrapperHtmlSnippet" minOccurs="0"/>
 *         <element name="footer" type="{https://www.google.com/apis/ads/publisher/v201602}CreativeWrapperHtmlSnippet" minOccurs="0"/>
 *         <element name="ordering" type="{https://www.google.com/apis/ads/publisher/v201602}CreativeWrapperOrdering" minOccurs="0"/>
 *         <element name="status" type="{https://www.google.com/apis/ads/publisher/v201602}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