All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.ads.dfp.jaxws.v201508.CrossSellErrorReason Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201508;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CrossSellError.Reason. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="CrossSellError.Reason">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="UNSUPPORTED_RESERVATION_TYPE"/>
 *     <enumeration value="NO_VALID_ELIGIBLE_RESERVATION_TYPES"/>
 *     <enumeration value="COMPANY_IS_NOT_DISTRIBUTION_PARTNER"/>
 *     <enumeration value="CHANGING_PARTNER_NETWORK_IS_NOT_SUPPORTED"/>
 *     <enumeration value="MISSING_DISTRIBUTOR_PARTNER_NAME"/>
 *     <enumeration value="DISTRIBUTOR_NETWORK_MISSING_PUBLISHER_FEATURE"/>
 *     <enumeration value="CONTENT_PROVIDER_NETWORK_MISSING_PUBLISHER_FEATURE"/>
 *     <enumeration value="INVALID_DISTRIBUTOR_PARTNER_NAME"/>
 *     <enumeration value="INVALID_CONTENT_PROVIDER_NETWORK"/>
 *     <enumeration value="CONTENT_PROVIDER_NETWORK_CANNOT_BE_ACTIVE_NETWORK"/>
 *     <enumeration value="CONTENT_PROVIDER_NETWORK_ALREADY_ENABLED_FOR_CROSS_SELLING"/>
 *     <enumeration value="DISTRIBUTOR_RULE_VIOLATION_ERROR"/>
 *     <enumeration value="DISTRIBUTOR_RULE_VIOLATION_WARNING"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "CrossSellError.Reason") @XmlEnum public enum CrossSellErrorReason { /** * * Only standard or sponsorship line item types are supported for cross selling. * * */ UNSUPPORTED_RESERVATION_TYPE, /** * * A cross-sell partner must have at least one eligible line item type. * * */ NO_VALID_ELIGIBLE_RESERVATION_TYPES, /** * * A company for cross-sell partner must be an affiliate/distribution company. * * */ COMPANY_IS_NOT_DISTRIBUTION_PARTNER, /** * * The network code of a cross-sell partner cannot be changed. * * */ CHANGING_PARTNER_NETWORK_IS_NOT_SUPPORTED, /** * * A cross-sell partner must have a partner name. * * */ MISSING_DISTRIBUTOR_PARTNER_NAME, /** * * The cross-sell distributor publisher feature must be enabled. * * */ DISTRIBUTOR_NETWORK_MISSING_PUBLISHER_FEATURE, /** * * The cross-sell content provider publisher feature must be enabled on the partner's network. * * */ CONTENT_PROVIDER_NETWORK_MISSING_PUBLISHER_FEATURE, /** * * The cross-sell partner name conflicts with an ad unit name on the partner's network. * * */ INVALID_DISTRIBUTOR_PARTNER_NAME, /** * * The network code of a cross-sell partner is invalid. * * */ INVALID_CONTENT_PROVIDER_NETWORK, /** * * The content provider network must be different than the distributor network. * * */ CONTENT_PROVIDER_NETWORK_CANNOT_BE_ACTIVE_NETWORK, /** * * The same network code was already enabled for cross-sell in a different company. * * */ CONTENT_PROVIDER_NETWORK_ALREADY_ENABLED_FOR_CROSS_SELLING, /** * * A rule defined by the cross selling distributor has been violated by a line item targeting * a shared ad unit. Violating this rule is an error. * * */ DISTRIBUTOR_RULE_VIOLATION_ERROR, /** * * A rule defined by the cross selling distributor has been violated by a line item targeting * a shared ad unit. Violating this rule is a warning. * *

By setting {@link LineItem#skipCrossSellingRuleWarningChecks}, the content partner can * suppress the warning (and create or save the line item). * *

This flag is available beginning in V201411. * * */ DISTRIBUTOR_RULE_VIOLATION_WARNING, /** * * The value returned if the actual value is not exposed by the requested API version. * * */ UNKNOWN; public String value() { return name(); } public static CrossSellErrorReason fromValue(String v) { return valueOf(v); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy