com.microsoft.bingads.v13.campaignmanagement.Schedule Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Schedule complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Schedule", propOrder = {
"dayTimeRanges",
"endDate",
"startDate",
"useSearcherTimeZone"
})
public class Schedule {
@XmlElement(name = "DayTimeRanges", nillable = true)
protected ArrayOfDayTime dayTimeRanges;
@XmlElement(name = "EndDate", nillable = true)
protected Date endDate;
@XmlElement(name = "StartDate", nillable = true)
protected Date startDate;
@XmlElement(name = "UseSearcherTimeZone", nillable = true)
protected Boolean useSearcherTimeZone;
/**
* Gets the value of the dayTimeRanges property.
*
* @return
* possible object is
* {@link ArrayOfDayTime }
*
*/
public ArrayOfDayTime getDayTimeRanges() {
return dayTimeRanges;
}
/**
* Sets the value of the dayTimeRanges property.
*
* @param value
* allowed object is
* {@link ArrayOfDayTime }
*
*/
public void setDayTimeRanges(ArrayOfDayTime value) {
this.dayTimeRanges = value;
}
/**
* Gets the value of the endDate property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setEndDate(Date value) {
this.endDate = 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 useSearcherTimeZone property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getUseSearcherTimeZone() {
return useSearcherTimeZone;
}
/**
* Sets the value of the useSearcherTimeZone property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUseSearcherTimeZone(Boolean value) {
this.useSearcherTimeZone = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy