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

com.omgm.speedy.eps.soap.model.ResultCourierServiceExt Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

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


/**
 * 

Java class for resultCourierServiceExt complex type. * *

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

 * <complexType name="resultCourierServiceExt">
 *   <complexContent>
 *     <extension base="{http://ver01.eps.speedy.sirma.com/}resultCourierService">
 *       <sequence>
 *         <element name="deliveryDeadline" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "resultCourierServiceExt", propOrder = { "deliveryDeadline" }) public class ResultCourierServiceExt extends ResultCourierService { @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar deliveryDeadline; /** * Gets the value of the deliveryDeadline property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDeliveryDeadline() { return deliveryDeadline; } /** * Sets the value of the deliveryDeadline property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDeliveryDeadline(XMLGregorianCalendar value) { this.deliveryDeadline = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy