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

com.microsoft.bingads.v13.reporting.ReportTime Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 13.0.22.1
Show newest version

package com.microsoft.bingads.v13.reporting;

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


/**
 * 

Java class for ReportTime complex type. * *

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

 * <complexType name="ReportTime">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CustomDateRangeEnd" type="{https://bingads.microsoft.com/Reporting/v13}Date" minOccurs="0"/>
 *         <element name="CustomDateRangeStart" type="{https://bingads.microsoft.com/Reporting/v13}Date" minOccurs="0"/>
 *         <element name="PredefinedTime" type="{https://bingads.microsoft.com/Reporting/v13}ReportTimePeriod" minOccurs="0"/>
 *         <element name="ReportTimeZone" type="{https://bingads.microsoft.com/Reporting/v13}ReportTimeZone" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy