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

org.gs4tr.projectdirector.model.dto.xsd.DocumentTicket Maven / Gradle / Ivy

Go to download

The newest version!

package org.gs4tr.projectdirector.model.dto.xsd;

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


/**
 * 

Java class for DocumentTicket complex type. * *

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

 * <complexType name="DocumentTicket">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="submissionTicket" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ticketId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DocumentTicket", propOrder = { "submissionTicket", "ticketId" }) public class DocumentTicket { @XmlElement(required = true, nillable = true) protected String submissionTicket; @XmlElement(required = true, nillable = true) protected String ticketId; /** * Gets the value of the submissionTicket property. * * @return * possible object is * {@link String } * */ public String getSubmissionTicket() { return submissionTicket; } /** * Sets the value of the submissionTicket property. * * @param value * allowed object is * {@link String } * */ public void setSubmissionTicket(String value) { this.submissionTicket = value; } /** * Gets the value of the ticketId property. * * @return * possible object is * {@link String } * */ public String getTicketId() { return ticketId; } /** * Sets the value of the ticketId property. * * @param value * allowed object is * {@link String } * */ public void setTicketId(String value) { this.ticketId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy