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

fish.focus.schema.movementrules.module.v1.GetTicketListRequest Maven / Gradle / Ivy

The newest version!

package fish.focus.schema.movementrules.module.v1;

import java.io.Serializable;
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.XmlType;
import fish.focus.schema.movementrules.search.v1.TicketQuery;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{urn:module.movementrules.schema.focus.fish:v1}RulesBaseRequest">
 *       <sequence>
 *         <element name="query" type="{urn:search.movementrules.schema.focus.fish:v1}TicketQuery"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "query" }) @XmlRootElement(name = "GetTicketListRequest") public class GetTicketListRequest extends RulesBaseRequest implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected TicketQuery query; /** * Gets the value of the query property. * * @return * possible object is * {@link TicketQuery } * */ public TicketQuery getQuery() { return query; } /** * Sets the value of the query property. * * @param value * allowed object is * {@link TicketQuery } * */ public void setQuery(TicketQuery value) { this.query = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy