
com.google.api.ads.dfp.jaxws.v201505.PoddingErrorReason 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.v201505;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PoddingError.Reason.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="PoddingError.Reason">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="INVALID_PODDING_TYPE_NONE"/>
* <enumeration value="INVALID_PODDING_TYPE_STANDARD"/>
* <enumeration value="INVALID_OPTIMIZED_POD_WITHOUT_DURATION"/>
* <enumeration value="INVALID_OPTIMIZED_POD_WITHOUT_ADS"/>
* <enumeration value="INVALID_POD_DURATION_RANGE"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "PoddingError.Reason")
@XmlEnum
public enum PoddingErrorReason {
/**
*
* Invalid podding type NONE, but has podding fields filled in. Podding types are defined in
* {@link com.google.ads.publisher.domain.entity.adrule.export.PoddingType}.
*
*
*/
INVALID_PODDING_TYPE_NONE,
/**
*
* Invalid podding type STANDARD, but doesn't specify the max ads in pod and max ad duration
* podding fields.
*
*
*/
INVALID_PODDING_TYPE_STANDARD,
/**
*
* Invalid podding type OPTIMIZED, but doesn't specify pod duration.
*
*
*/
INVALID_OPTIMIZED_POD_WITHOUT_DURATION,
/**
*
* Invalid optimized pod that does not specify a valid max ads in pod, which must either be a
* positive number or -1 to signify that there is no maximum.
*
*
*/
INVALID_OPTIMIZED_POD_WITHOUT_ADS,
/**
*
* Min pod ad duration is greater than max pod ad duration.
*
*
*/
INVALID_POD_DURATION_RANGE;
public String value() {
return name();
}
public static PoddingErrorReason fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy