// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.03.18 at 03:48:09 PM CET // package ch.fd.invoice440.request; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for invoiceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="invoiceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="request_timestamp" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" /> * <attribute name="request_date" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> * <attribute name="request_id" use="required" type="{http://www.forum-datenaustausch.ch/invoice}stringType1_35" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "invoiceType") public class InvoiceType { @XmlAttribute(name = "request_timestamp", required = true) @XmlSchemaType(name = "unsignedLong") protected BigInteger requestTimestamp; @XmlAttribute(name = "request_date", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar requestDate; @XmlAttribute(name = "request_id", required = true) protected String requestId; /** * Gets the value of the requestTimestamp property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRequestTimestamp() { return requestTimestamp; } /** * Sets the value of the requestTimestamp property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRequestTimestamp(BigInteger value) { this.requestTimestamp = value; } /** * Gets the value of the requestDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getRequestDate() { return requestDate; } /** * Sets the value of the requestDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setRequestDate(XMLGregorianCalendar value) { this.requestDate = value; } /** * Gets the value of the requestId property. * * @return * possible object is * {@link String } * */ public String getRequestId() { return requestId; } /** * Sets the value of the requestId property. * * @param value * allowed object is * {@link String } * */ public void setRequestId(String value) { this.requestId = value; } }