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

org.iata.ndc.schema.Cheque Maven / Gradle / Ivy

The newest version!

package org.iata.ndc.schema;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="SignedDate" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
 *         <element name="OrderTo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "number", "signedDate", "orderTo" }) @XmlRootElement(name = "Cheque") public class Cheque { @XmlElement(name = "Number") protected Integer number; @XmlElement(name = "SignedDate") @XmlSchemaType(name = "date") protected XMLGregorianCalendar signedDate; @XmlElement(name = "OrderTo") protected String orderTo; /** * Gets the value of the number property. * * @return * possible object is * {@link Integer } * */ public Integer getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link Integer } * */ public void setNumber(Integer value) { this.number = value; } /** * Gets the value of the signedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSignedDate() { return signedDate; } /** * Sets the value of the signedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSignedDate(XMLGregorianCalendar value) { this.signedDate = value; } /** * Gets the value of the orderTo property. * * @return * possible object is * {@link String } * */ public String getOrderTo() { return orderTo; } /** * Sets the value of the orderTo property. * * @param value * allowed object is * {@link String } * */ public void setOrderTo(String value) { this.orderTo = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy