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

fish.focus.schema.movementrules.module.v1.CountTicketsByMovementsResponse 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

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="count" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "count" }) @XmlRootElement(name = "CountTicketsByMovementsResponse") public class CountTicketsByMovementsResponse implements Serializable { private final static long serialVersionUID = 1L; protected long count; /** * Gets the value of the count property. * */ public long getCount() { return count; } /** * Sets the value of the count property. * */ public void setCount(long value) { this.count = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy