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

com.google.api.ads.admanager.jaxws.v202402.CreativePolicyViolation Maven / Gradle / Ivy

The newest version!
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.


package com.google.api.ads.admanager.jaxws.v202402;

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


/**
 * 

Java class for CreativePolicyViolation. * *

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

*

 * <simpleType name="CreativePolicyViolation">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="MALWARE_IN_CREATIVE"/>
 *     <enumeration value="MALWARE_IN_LANDING_PAGE"/>
 *     <enumeration value="LEGALLY_BLOCKED_REDIRECT_URL"/>
 *     <enumeration value="MISREPRESENTATION_OF_PRODUCT"/>
 *     <enumeration value="SELF_CLICKING_CREATIVE"/>
 *     <enumeration value="GAMING_GOOGLE_NETWORK"/>
 *     <enumeration value="DYNAMIC_DNS"/>
 *     <enumeration value="CIRCUMVENTING_SYSTEMS"/>
 *     <enumeration value="PHISHING"/>
 *     <enumeration value="DOWNLOAD_PROMPT_IN_CREATIVE"/>
 *     <enumeration value="UNAUTHORIZED_COOKIE_DETECTED"/>
 *     <enumeration value="TEMPORARY_PAUSE_FOR_VENDOR_INVESTIGATION"/>
 *     <enumeration value="ABUSIVE_EXPERIENCE"/>
 *     <enumeration value="TRICK_TO_CLICK"/>
 *     <enumeration value="USE_OF_NON_ALLOWLISTED_OMID_VERIFICATION_SCRIPT"/>
 *     <enumeration value="MISUSE_OF_OMID_API"/>
 *     <enumeration value="UNACCEPTABLE_HTML_AD"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "CreativePolicyViolation") @XmlEnum public enum CreativePolicyViolation { /** * * Malware was found in the creative. * *

For more information see * here. * * */ MALWARE_IN_CREATIVE, /** * * Malware was found in the landing page. * *

For more information see * here. * * */ MALWARE_IN_LANDING_PAGE, /** * * The redirect url contains legally objectionable content. * * */ LEGALLY_BLOCKED_REDIRECT_URL, /** * * The creative misrepresents the product or service being advertised. * *

For more information see * here. * * */ MISREPRESENTATION_OF_PRODUCT, /** * * The creative has been determined to be self clicking. * * */ SELF_CLICKING_CREATIVE, /** * * The creative has been determined as attempting to game the Google network. * *

For more information see * here. * * */ GAMING_GOOGLE_NETWORK, /** * * The landing page for the creative uses a dynamic DNS. * *

For more information see * here. * * */ DYNAMIC_DNS, /** * * The creative has been determined as attempting to circumvent Google advertising systems. * * */ CIRCUMVENTING_SYSTEMS, /** * * Phishing found in creative or landing page. * *

For more information see * here. * * */ PHISHING, /** * * The creative prompts the user to download a file. * *

For more information see * here * * */ DOWNLOAD_PROMPT_IN_CREATIVE, /** * * The creative sets an unauthorized cookie on a Google domain. * *

For more information see here * * */ UNAUTHORIZED_COOKIE_DETECTED, /** * * The creative has been temporarily paused while we investigate. * * */ TEMPORARY_PAUSE_FOR_VENDOR_INVESTIGATION, /** * * The landing page contains an abusive experience. * *

For more information see here. * * */ ABUSIVE_EXPERIENCE, /** * * The creative is designed to mislead or trick the user into interacting with it. * *

For more information see here. * * */ TRICK_TO_CLICK, /** * * Non-allowlisted OMID verification script. * *

For more information see here. * * */ USE_OF_NON_ALLOWLISTED_OMID_VERIFICATION_SCRIPT, /** * * OMID sdk injected by creative. * * < p>For more information see here. * * */ MISUSE_OF_OMID_API, /** * * Unacceptable HTML5 ad. * *

For more information see here. * * */ UNACCEPTABLE_HTML_AD, /** * * The value returned if the actual value is not exposed by the requested API version. * * */ UNKNOWN; public String value() { return name(); } public static CreativePolicyViolation fromValue(String v) { return valueOf(v); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy