
com.google.api.ads.dfp.jaxws.v201508.LineItemCreativeAssociationStatus 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.v201508;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for LineItemCreativeAssociation.Status.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="LineItemCreativeAssociation.Status">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ACTIVE"/>
* <enumeration value="NOT_SERVING"/>
* <enumeration value="INACTIVE"/>
* <enumeration value="DELETED"/>
* <enumeration value="UNKNOWN"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "LineItemCreativeAssociation.Status")
@XmlEnum
public enum LineItemCreativeAssociationStatus {
/**
*
* The association is active and the associated {@link Creative} can be
* served.
*
*
*/
ACTIVE,
/**
*
* The association is active but the associated {@link Creative} may not be
* served, because its size is not targeted by the line item.
*
*
*/
NOT_SERVING,
/**
*
* The association is inactive and the associated {@link Creative} is
* ineligible for being served.
*
*
*/
INACTIVE,
/**
*
* The association is deleted and the associated {@link Creative} is
* ineligible for being served.
*
*
*/
DELETED,
/**
*
* The value returned if the actual value is not exposed by the requested API
* version.
*
*
*/
UNKNOWN;
public String value() {
return name();
}
public static LineItemCreativeAssociationStatus fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy