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

com.google.api.ads.dfp.jaxws.v201505.ReportJobStatus Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

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

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


/**
 * 

Java class for ReportJobStatus. * *

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

*

 * <simpleType name="ReportJobStatus">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="COMPLETED"/>
 *     <enumeration value="IN_PROGRESS"/>
 *     <enumeration value="FAILED"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ReportJobStatus") @XmlEnum public enum ReportJobStatus { /** * * The {@link ReportJob} has completed successfully and is ready to download. * * */ COMPLETED, /** * * The {@link ReportJob} is still being executed. * * */ IN_PROGRESS, /** * * The {@link ReportJob} has failed to run to completion. * * */ FAILED; public String value() { return name(); } public static ReportJobStatus fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy