package com.microsoft.bingads.v11.reporting; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Date complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Date"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="Year" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Date", propOrder = { "day", "month", "year" }) public class Date { @XmlElement(name = "Day") protected int day; @XmlElement(name = "Month") protected int month; @XmlElement(name = "Year") protected int year; /** * Gets the value of the day property. * */ public int getDay() { return day; } /** * Sets the value of the day property. * */ public void setDay(int value) { this.day = value; } /** * Gets the value of the month property. * */ public int getMonth() { return month; } /** * Sets the value of the month property. * */ public void setMonth(int value) { this.month = value; } /** * Gets the value of the year property. * */ public int getYear() { return year; } /** * Sets the value of the year property. * */ public void setYear(int value) { this.year = value; } }