ru.asubezdna.edata.v1_10.Info Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.11.09 at 01:38:12 PM MSK
//
package ru.asubezdna.edata.v1_10;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for Info complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Info">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Date" type="{http://www.w3.org/2001/XMLSchema}date"/>
* <element name="PostDocuments" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Info", propOrder = {
"date",
"postDocuments"
})
public class Info {
@XmlElement(name = "Date", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar date;
@XmlElement(name = "PostDocuments")
protected boolean postDocuments;
/**
* Gets the value of the date property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDate() {
return date;
}
/**
* Sets the value of the date property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDate(XMLGregorianCalendar value) {
this.date = value;
}
/**
* Gets the value of the postDocuments property.
*
*/
public boolean isPostDocuments() {
return postDocuments;
}
/**
* Sets the value of the postDocuments property.
*
*/
public void setPostDocuments(boolean value) {
this.postDocuments = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy