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

com.google.api.ads.dfp.jaxws.v201605.EvaluationStatus 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 EvaluationStatus. * *

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

*

 * <simpleType name="EvaluationStatus">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="CANCELED"/>
 *     <enumeration value="COMPLETED"/>
 *     <enumeration value="FAILED"/>
 *     <enumeration value="IN_PROGRESS"/>
 *     <enumeration value="INACTIVE"/>
 *     <enumeration value="SKIPPED"/>
 *     <enumeration value="INACTIVE_BUT_TRIGGERED"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "EvaluationStatus") @XmlEnum public enum EvaluationStatus { /** * * When a {@link Proposal} is retracted the associated workflow is canceled. * Including the steps, rules and actions. * * */ CANCELED, /** * * The entity is in a completed state. If the entity is a workflow, it means that all steps have * been completed. If the entity is a step, it means all actions in the step have been completed. * If the entity is a workflow action, it means it has been done. * * */ COMPLETED, /** * * The entity is in a failed state. If the entity is a workflow, it means that some step has * failed. If the entity is a step, it means some actions in the step have failed. If the * entity is a workflow action, it means it has failed. * * */ FAILED, /** * * The entity is in progress. If the entity is a workflow, it means that some steps have yet to be * started. If the entity is a step, it means some actions in the step are still in a pending * state. If the entity is a workflow action, it means the action is ongoing. * * */ IN_PROGRESS, /** * * The entity has not been started. If the entity is a step, it has not been started by the * workflow execution process If the entity is a workflow action, it means that the step has not * been triggered. * * */ INACTIVE, /** * * The action is skipped because the {@link Proposal} and/or {@link ProposalLineItem proposal line * items} do not trigger the conditions for the step. This value is only for actions. * * */ SKIPPED, /** * * The action is triggered because the {@link Proposal} and/or {@link ProposalLineItem proposal * line items} trigger the conditions for the step, but the step itself has not started yet. * * */ INACTIVE_BUT_TRIGGERED, /** * * The value returned if the actual value is not exposed by the requested API version. * * */ UNKNOWN; public String value() { return name(); } public static EvaluationStatus fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy