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

com.google.api.ads.dfp.jaxws.v201605.AssetErrorReason Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

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

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


/**
 * 

Java class for AssetError.Reason. * *

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

*

 * <simpleType name="AssetError.Reason">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="NON_UNIQUE_NAME"/>
 *     <enumeration value="FILE_NAME_TOO_LONG"/>
 *     <enumeration value="FILE_SIZE_TOO_LARGE"/>
 *     <enumeration value="MISSING_REQUIRED_DYNAMIC_ALLOCATION_CLIENT"/>
 *     <enumeration value="MISSING_REQUIRED_DYNAMIC_ALLOCATION_HEIGHT"/>
 *     <enumeration value="MISSING_REQUIRED_DYNAMIC_ALLOCATION_WIDTH"/>
 *     <enumeration value="MISSING_REQUIRED_DYNAMIC_ALLOCATION_FORMAT"/>
 *     <enumeration value="INVALID_CODE_SNIPPET_PARAMETER_VALUE"/>
 *     <enumeration value="INVALID_ASSET_ID"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "AssetError.Reason") @XmlEnum public enum AssetErrorReason { /** * * An asset name must be unique across advertiser. * * */ NON_UNIQUE_NAME, /** * * The file name is too long. * * */ FILE_NAME_TOO_LONG, /** * * The file size is too large. * * */ FILE_SIZE_TOO_LARGE, /** * * Required client code is not present in the code snippet. * * */ MISSING_REQUIRED_DYNAMIC_ALLOCATION_CLIENT, /** * * Required height is not present in the code snippet. * * */ MISSING_REQUIRED_DYNAMIC_ALLOCATION_HEIGHT, /** * * Required width is not present in the code snippet. * * */ MISSING_REQUIRED_DYNAMIC_ALLOCATION_WIDTH, /** * * Required format is not present in the mobile code snippet. * * */ MISSING_REQUIRED_DYNAMIC_ALLOCATION_FORMAT, /** * * The parameter value in the code snippet is invalid. * * */ INVALID_CODE_SNIPPET_PARAMETER_VALUE, /** * * Invalid asset Id. * * */ INVALID_ASSET_ID, /** * * The value returned if the actual value is not exposed by the requested API version. * * */ UNKNOWN; public String value() { return name(); } public static AssetErrorReason fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy