
com.google.api.ads.dfp.jaxws.v201508.AdExclusionRuleErrorReason 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 AdExclusionRuleError.Reason.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="AdExclusionRuleError.Reason">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="BLOCK_ALL_RULE_CANNOT_INCLUDE_ROOT_AD_UNIT"/>
* <enumeration value="BLOCK_ALL_RULE_CANNOT_HAVE_BLOCKED_LABELS"/>
* <enumeration value="BLOCK_ALL_RULE_MUST_CONTAIN_ALLOWED_LABELS"/>
* <enumeration value="RULE_MUST_CONTAIN_BLOCKING"/>
* <enumeration value="BLOCKED_LABEL_ALSO_ALLOWED"/>
* <enumeration value="LABELS_MUST_BE_AD_EXCLUSION_TYPE"/>
* <enumeration value="EXCLUDED_AD_UNIT_ALSO_INCLUDED"/>
* <enumeration value="UNKNOWN"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "AdExclusionRuleError.Reason")
@XmlEnum
public enum AdExclusionRuleErrorReason {
/**
*
* The {@link AdExclusionRule#inventoryTargeting} cannot target the root ad unit if
* {@link AdExclusionRule#isBlockAll} is true.
*
*
*/
BLOCK_ALL_RULE_CANNOT_INCLUDE_ROOT_AD_UNIT,
/**
*
* The {@link AdExclusionRule#blockedLabelIds} must be empty if
* {@link AdExclusionRule#isBlockAll} is true.
*
*
*/
BLOCK_ALL_RULE_CANNOT_HAVE_BLOCKED_LABELS,
/**
*
* The {@link AdExclusionRule#allowedLabelIds} must contain allowed labels if
* {@link AdExclusionRule#isBlockAll} is true.
*
*
*/
BLOCK_ALL_RULE_MUST_CONTAIN_ALLOWED_LABELS,
/**
*
* The {@link AdExclusionRule} must contain blocking information.
*
*
*/
RULE_MUST_CONTAIN_BLOCKING,
/**
*
* The same label ID cannot be contained in both {@link AdExclusionRule#allowedLabelIds} and
* {@link AdExclusionRule#blockedLabelIds}.
*
*
*/
BLOCKED_LABEL_ALSO_ALLOWED,
/**
*
* Label IDs included in {@link AdExclusionRule#allowedLabelIds} and
* {@link AdExclusionRule#blockedLabelIds} must correspond to {@link Label} objects with type
* {@link Label#AD_EXCLUSION}.
*
*
*/
LABELS_MUST_BE_AD_EXCLUSION_TYPE,
/**
*
* The same ad unit cannot be included in both {@link InventoryTargeting#targetedAdUnits} and
* {@link InventoryTargeting#excludedAdUnits} in {@link AdExclusionRule#inventoryTargeting}.
*
*
*/
EXCLUDED_AD_UNIT_ALSO_INCLUDED,
/**
*
* The value returned if the actual value is not exposed by the requested API version.
*
*
*/
UNKNOWN;
public String value() {
return name();
}
public static AdExclusionRuleErrorReason fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy