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

com.google.api.ads.dfp.jaxws.v201508.ReportJob Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

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

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             Represents a report job that will be run to retrieve performance and
 *             statistics information about ad campaigns, networks, inventory and sales.
 *           
 * 
 * 

Java class for ReportJob complex type. * *

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

 * <complexType name="ReportJob">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="reportQuery" type="{https://www.google.com/apis/ads/publisher/v201508}ReportQuery" minOccurs="0"/>
 *         <element name="reportJobStatus" type="{https://www.google.com/apis/ads/publisher/v201508}ReportJobStatus" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ReportJob", propOrder = { "id", "reportQuery", "reportJobStatus" }) public class ReportJob { protected Long id; protected ReportQuery reportQuery; @XmlSchemaType(name = "string") protected ReportJobStatus reportJobStatus; /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = value; } /** * Gets the value of the reportQuery property. * * @return * possible object is * {@link ReportQuery } * */ public ReportQuery getReportQuery() { return reportQuery; } /** * Sets the value of the reportQuery property. * * @param value * allowed object is * {@link ReportQuery } * */ public void setReportQuery(ReportQuery value) { this.reportQuery = value; } /** * Gets the value of the reportJobStatus property. * * @return * possible object is * {@link ReportJobStatus } * */ public ReportJobStatus getReportJobStatus() { return reportJobStatus; } /** * Sets the value of the reportJobStatus property. * * @param value * allowed object is * {@link ReportJobStatus } * */ public void setReportJobStatus(ReportJobStatus value) { this.reportJobStatus = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy