
com.google.api.ads.dfp.jaxws.v201508.PackageErrorReason 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 PackageError.Reason.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="PackageError.Reason">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="INVAILD_PRODUCT_PACKAGE"/>
* <enumeration value="INACTIVE_RATE_CARD"/>
* <enumeration value="PRODUCT_PACKAGE_NOT_IN_RATE_CARD"/>
* <enumeration value="HAS_NO_UNARCHIVED_PRODUCT_PACKAGE_ITEM"/>
* <enumeration value="NOT_SAME_RATE_CARD"/>
* <enumeration value="UNKNOWN"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "PackageError.Reason")
@XmlEnum
public enum PackageErrorReason {
/**
*
* Package cannot be created from an inactive or archived product package.
*
*
*/
INVAILD_PRODUCT_PACKAGE,
/**
*
* The rate card is inactive.
*
*
*/
INACTIVE_RATE_CARD,
/**
*
* There is no association between the product package and the rate card.
*
*
*/
PRODUCT_PACKAGE_NOT_IN_RATE_CARD,
/**
*
* There are no unarchived product package items in this product package.
*
*
*/
HAS_NO_UNARCHIVED_PRODUCT_PACKAGE_ITEM,
/**
*
* The package's rate card is not the same as other packages or proposal line items
* in the proposal.
*
*
*/
NOT_SAME_RATE_CARD,
/**
*
* The value returned if the actual value is not exposed by the requested API version.
*
*
*/
UNKNOWN;
public String value() {
return name();
}
public static PackageErrorReason fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy