
com.google.api.ads.dfp.jaxws.v201508.GrpSettingsErrorReason 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 GrpSettingsError.Reason.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="GrpSettingsError.Reason">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="INVALID_AGE_RANGE"/>
* <enumeration value="LINE_ITEM_ENVIRONMENT_TYPE_NOT_SUPPORTED"/>
* <enumeration value="LINE_ITEM_TYPE_NOT_SUPPORTED"/>
* <enumeration value="CANNOT_SPECIFY_GENDER_FOR_GIVEN_AGE_RANGE"/>
* <enumeration value="INVALID_MIN_AGE"/>
* <enumeration value="INVALID_MAX_AGE"/>
* <enumeration value="CANNOT_DISABLE_GRP_AFTER_ENABLING"/>
* <enumeration value="CANNOT_CHANGE_GRP_PROVIDERS"/>
* <enumeration value="CANNOT_CHANGE_TARGET_DEMOG_AFTER_ACTIVATION"/>
* <enumeration value="DEMOG_GOAL_NOT_SUPPORTED"/>
* <enumeration value="CANNOT_SET_DEMOG_GOAL"/>
* <enumeration value="CANNOT_REMOVE_DEMOG_GOAL"/>
* <enumeration value="UNSUPPORTED_GEO_TARGETING"/>
* <enumeration value="UNKNOWN"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "GrpSettingsError.Reason")
@XmlEnum
public enum GrpSettingsErrorReason {
/**
*
* Age range for GRP audience is not valid. Please see
* https://support.google.com/dfp_premium/answer/6337075 for more information.
*
*
*/
INVALID_AGE_RANGE,
/**
*
* GRP settings are only supported for video line items.
*
*
*/
LINE_ITEM_ENVIRONMENT_TYPE_NOT_SUPPORTED,
/**
*
* GRP settings are not supported for the given line item type.
*
*
*/
LINE_ITEM_TYPE_NOT_SUPPORTED,
/**
*
* GRP audience gender cannot be specified for the selected age range.
*
*
*/
CANNOT_SPECIFY_GENDER_FOR_GIVEN_AGE_RANGE,
/**
*
* Minimum age for GRP audience is not valid.
*
*
*/
INVALID_MIN_AGE,
/**
*
* Maximum age for GRP audience is not valid.
*
*
*/
INVALID_MAX_AGE,
/**
*
* GRP settings cannot be disabled.
*
*
*/
CANNOT_DISABLE_GRP_AFTER_ENABLING,
/**
*
* GRP provider cannot be updated.
*
*
*/
CANNOT_CHANGE_GRP_PROVIDERS,
/**
*
* GRP settings cannot be updated once the line item has started serving.
*
*
*/
CANNOT_CHANGE_TARGET_DEMOG_AFTER_ACTIVATION,
/**
*
* Impression goal based on GRP audience is not supported.
*
*
*/
DEMOG_GOAL_NOT_SUPPORTED,
/**
*
* Impression goal based on GRP audience cannot be set once the line item has started serving.
*
*
*/
CANNOT_SET_DEMOG_GOAL,
/**
*
* Impression goal based on GRP audience cannot be removed once the line item has started
* serving.
*
*
*/
CANNOT_REMOVE_DEMOG_GOAL,
/**
*
* Unsupported geographic location targeted for line item with GRP audience goal.
*
*
*/
UNSUPPORTED_GEO_TARGETING,
/**
*
* The value returned if the actual value is not exposed by the requested API version.
*
*
*/
UNKNOWN;
public String value() {
return name();
}
public static GrpSettingsErrorReason fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy