
com.google.api.ads.dfp.jaxws.v201508.ReconciliationReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dfp-appengine Show documentation
Show all versions of dfp-appengine Show documentation
DFP specific AppEngine components.
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;
/**
*
* A {@code ReconciliationReport} represents a report that can be reconciled.
*
*
* Java class for ReconciliationReport complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ReconciliationReport">
* <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="status" type="{https://www.google.com/apis/ads/publisher/v201508}ReconciliationReportStatus" minOccurs="0"/>
* <element name="startDate" type="{https://www.google.com/apis/ads/publisher/v201508}Date" minOccurs="0"/>
* <element name="notes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReconciliationReport", propOrder = {
"id",
"status",
"startDate",
"notes"
})
public class ReconciliationReport {
protected Long id;
@XmlSchemaType(name = "string")
protected ReconciliationReportStatus status;
protected Date startDate;
protected String notes;
/**
* 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 status property.
*
* @return
* possible object is
* {@link ReconciliationReportStatus }
*
*/
public ReconciliationReportStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link ReconciliationReportStatus }
*
*/
public void setStatus(ReconciliationReportStatus value) {
this.status = value;
}
/**
* Gets the value of the startDate property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getStartDate() {
return startDate;
}
/**
* Sets the value of the startDate property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setStartDate(Date value) {
this.startDate = value;
}
/**
* Gets the value of the notes property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNotes() {
return notes;
}
/**
* Sets the value of the notes property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNotes(String value) {
this.notes = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy