com.microsoft.bingads.v13.campaignmanagement.DayTimeCriterion 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.campaignmanagement;
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 DayTimeCriterion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DayTimeCriterion", propOrder = {
"day",
"fromHour",
"fromMinute",
"toHour",
"toMinute"
})
public class DayTimeCriterion
extends Criterion
{
@XmlElement(name = "Day", nillable = true)
@XmlSchemaType(name = "string")
protected Day day;
@XmlElement(name = "FromHour", nillable = true)
protected Integer fromHour;
@XmlElement(name = "FromMinute", nillable = true)
@XmlSchemaType(name = "string")
protected Minute fromMinute;
@XmlElement(name = "ToHour", nillable = true)
protected Integer toHour;
@XmlElement(name = "ToMinute", nillable = true)
@XmlSchemaType(name = "string")
protected Minute toMinute;
/**
* Gets the value of the day property.
*
* @return
* possible object is
* {@link Day }
*
*/
public Day getDay() {
return day;
}
/**
* Sets the value of the day property.
*
* @param value
* allowed object is
* {@link Day }
*
*/
public void setDay(Day value) {
this.day = value;
}
/**
* Gets the value of the fromHour property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getFromHour() {
return fromHour;
}
/**
* Sets the value of the fromHour property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setFromHour(Integer value) {
this.fromHour = value;
}
/**
* Gets the value of the fromMinute property.
*
* @return
* possible object is
* {@link Minute }
*
*/
public Minute getFromMinute() {
return fromMinute;
}
/**
* Sets the value of the fromMinute property.
*
* @param value
* allowed object is
* {@link Minute }
*
*/
public void setFromMinute(Minute value) {
this.fromMinute = value;
}
/**
* Gets the value of the toHour property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getToHour() {
return toHour;
}
/**
* Sets the value of the toHour property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setToHour(Integer value) {
this.toHour = value;
}
/**
* Gets the value of the toMinute property.
*
* @return
* possible object is
* {@link Minute }
*
*/
public Minute getToMinute() {
return toMinute;
}
/**
* Sets the value of the toMinute property.
*
* @param value
* allowed object is
* {@link Minute }
*
*/
public void setToMinute(Minute value) {
this.toMinute = value;
}
}