com.microsoft.bingads.v13.adinsight.DayMonthAndYear Maven / Gradle / Ivy
package com.microsoft.bingads.v13.adinsight;
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 DayMonthAndYear complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DayMonthAndYear", propOrder = {
"day",
"month",
"year"
})
public class DayMonthAndYear {
@XmlElement(name = "Day")
protected Integer day;
@XmlElement(name = "Month")
protected Integer month;
@XmlElement(name = "Year")
protected Integer year;
/**
* Gets the value of the day property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDay() {
return day;
}
/**
* Sets the value of the day property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDay(Integer value) {
this.day = value;
}
/**
* Gets the value of the month property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMonth() {
return month;
}
/**
* Sets the value of the month property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMonth(Integer value) {
this.month = value;
}
/**
* Gets the value of the year property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getYear() {
return year;
}
/**
* Sets the value of the year property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setYear(Integer value) {
this.year = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy