com.microsoft.bingads.v13.reporting.ReportTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
package com.microsoft.bingads.v13.reporting;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ReportTime complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReportTime", propOrder = {
"customDateRangeEnd",
"customDateRangeStart",
"predefinedTime",
"reportTimeZone"
})
public class ReportTime {
@XmlElement(name = "CustomDateRangeEnd", nillable = true)
protected Date customDateRangeEnd;
@XmlElement(name = "CustomDateRangeStart", nillable = true)
protected Date customDateRangeStart;
@XmlElement(name = "PredefinedTime", nillable = true)
@XmlSchemaType(name = "string")
protected ReportTimePeriod predefinedTime;
@XmlElement(name = "ReportTimeZone", nillable = true)
@XmlSchemaType(name = "string")
protected ReportTimeZone reportTimeZone;
/**
* Gets the value of the customDateRangeEnd property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getCustomDateRangeEnd() {
return customDateRangeEnd;
}
/**
* Sets the value of the customDateRangeEnd property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setCustomDateRangeEnd(Date value) {
this.customDateRangeEnd = value;
}
/**
* Gets the value of the customDateRangeStart property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getCustomDateRangeStart() {
return customDateRangeStart;
}
/**
* Sets the value of the customDateRangeStart property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setCustomDateRangeStart(Date value) {
this.customDateRangeStart = value;
}
/**
* Gets the value of the predefinedTime property.
*
* @return
* possible object is
* {@link ReportTimePeriod }
*
*/
public ReportTimePeriod getPredefinedTime() {
return predefinedTime;
}
/**
* Sets the value of the predefinedTime property.
*
* @param value
* allowed object is
* {@link ReportTimePeriod }
*
*/
public void setPredefinedTime(ReportTimePeriod value) {
this.predefinedTime = value;
}
/**
* Gets the value of the reportTimeZone property.
*
* @return
* possible object is
* {@link ReportTimeZone }
*
*/
public ReportTimeZone getReportTimeZone() {
return reportTimeZone;
}
/**
* Sets the value of the reportTimeZone property.
*
* @param value
* allowed object is
* {@link ReportTimeZone }
*
*/
public void setReportTimeZone(ReportTimeZone value) {
this.reportTimeZone = value;
}
}