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

com.google.api.ads.dfp.jaxws.v201602.DateTimeRangeTargetingErrorReason 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 DateTimeRangeTargetingError.Reason. * *

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

*

 * <simpleType name="DateTimeRangeTargetingError.Reason">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="EMPTY_RANGES"/>
 *     <enumeration value="NOT_SPONSORSHIP_LINEITEM"/>
 *     <enumeration value="PAST_RANGES_CHANGED"/>
 *     <enumeration value="RANGES_OVERLAP"/>
 *     <enumeration value="RANGES_OUT_OF_LINEITEM_ACTIVE_PERIOD"/>
 *     <enumeration value="START_TIME_IS_NOT_START_OF_DAY"/>
 *     <enumeration value="END_TIME_IS_NOT_END_OF_DAY"/>
 *     <enumeration value="START_DATE_TIME_IS_IN_PAST"/>
 *     <enumeration value="RANGE_END_TIME_BEFORE_START_TIME"/>
 *     <enumeration value="END_DATE_TIME_IS_TOO_LATE"/>
 *     <enumeration value="LIMITED_RANGES_IN_UNLIMITED_LINEITEM"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "DateTimeRangeTargetingError.Reason") @XmlEnum public enum DateTimeRangeTargetingErrorReason { /** * * No targeted ranges exists. * * */ EMPTY_RANGES, /** * * Type of lineitem is not sponsorship. * * */ NOT_SPONSORSHIP_LINEITEM, /** * * Past ranges are changed. * * */ PAST_RANGES_CHANGED, /** * * Targeted date time ranges overlap. * * */ RANGES_OVERLAP, /** * * Targeted date time ranges fall out the active period of lineitem. * * */ RANGES_OUT_OF_LINEITEM_ACTIVE_PERIOD, /** * * Start time of range (except the earliest range) is not at start of day. * Start of day is 00:00:00. * * */ START_TIME_IS_NOT_START_OF_DAY, /** * * End time of range (except the latest range) is not at end of day. * End of day is 23:59:59. * * */ END_TIME_IS_NOT_END_OF_DAY, /** * * Start date time of earliest targeted ranges is in past. * * */ START_DATE_TIME_IS_IN_PAST, /** * * The end time of range is before the start time. * Could happen when start type is IMMEDIATE or ONE_HOUR_LATER. * * */ RANGE_END_TIME_BEFORE_START_TIME, /** * * End date time of latest targeted ranges is too late. * * */ END_DATE_TIME_IS_TOO_LATE, LIMITED_RANGES_IN_UNLIMITED_LINEITEM, /** * * The value returned if the actual value is not exposed by the requested API version. * * */ UNKNOWN; public String value() { return name(); } public static DateTimeRangeTargetingErrorReason fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy