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

com.google.api.ads.dfp.jaxws.v201602.PlacementErrorReason Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

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

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


/**
 * 

Java class for PlacementError.Reason. * *

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

*

 * <simpleType name="PlacementError.Reason">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="INVALID_ENTITY_TYPE"/>
 *     <enumeration value="SHARED_INVENTORY_ASSIGNED"/>
 *     <enumeration value="PLACEMENTS_CANNOT_INCLUDE_INVENTORY_FROM_MULTIPLE_DISTRIBUTOR_NETWORKS"/>
 *     <enumeration value="PLACEMENTS_CANNOT_INCLUDE_BOTH_LOCAL_AND_SHARED_INVENTORY"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "PlacementError.Reason") @XmlEnum public enum PlacementErrorReason { /** * * Entity type is something other than inventory or content. * * */ INVALID_ENTITY_TYPE, /** * * Shared inventory cannot be assigned to a placement. * * */ SHARED_INVENTORY_ASSIGNED, /** * * Shared inventory from one distributor network cannot be in the same placement with * inventory from another distributor. * * */ PLACEMENTS_CANNOT_INCLUDE_INVENTORY_FROM_MULTIPLE_DISTRIBUTOR_NETWORKS, /** * * Shared inventory and local inventory cannot be in the same placement. * * */ PLACEMENTS_CANNOT_INCLUDE_BOTH_LOCAL_AND_SHARED_INVENTORY, /** * * The value returned if the actual value is not exposed by the requested API version. * * */ UNKNOWN; public String value() { return name(); } public static PlacementErrorReason fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy