package org.thriftbook;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for tradeReport complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="tradeReport">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="symbol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="price" type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="size" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="seq_num" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tradeReport", propOrder = {
"symbol",
"price",
"size",
"seqNum"
})
public class TradeReport {
protected String symbol;
protected double price;
protected int size;
@XmlElement(name = "seq_num")
protected int seqNum;
/**
* Gets the value of the symbol property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSymbol() {
return symbol;
}
/**
* Sets the value of the symbol property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSymbol(String value) {
this.symbol = value;
}
/**
* Gets the value of the price property.
*
*/
public double getPrice() {
return price;
}
/**
* Sets the value of the price property.
*
*/
public void setPrice(double value) {
this.price = value;
}
/**
* Gets the value of the size property.
*
*/
public int getSize() {
return size;
}
/**
* Sets the value of the size property.
*
*/
public void setSize(int value) {
this.size = value;
}
/**
* Gets the value of the seqNum property.
*
*/
public int getSeqNum() {
return seqNum;
}
/**
* Sets the value of the seqNum property.
*
*/
public void setSeqNum(int value) {
this.seqNum = value;
}
}