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

com.google.api.ads.dfp.jaxws.v201505.Date Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201505;

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


/**
 * 
 *             Represents a date.
 *           
 * 
 * 

Java class for Date complex type. * *

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

 * <complexType name="Date">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Date", propOrder = { "year", "month", "day" }) public class Date { protected Integer year; protected Integer month; protected Integer day; /** * 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; } /** * 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 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy