com.quotemedia.streamer.client.mapper.DerivativeInfoMsgImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of streamerclient-java-core Show documentation
Show all versions of streamerclient-java-core Show documentation
Java streaming client that provides easy-to-use client APIs to connect and subscribe to QuoteMedia's market data streaming services. https://quotemedia.com/
The newest version!
package com.quotemedia.streamer.client.mapper;
import com.quotemedia.datacache.data.Price;
import com.quotemedia.streamer.messages.market.DataMessage;
import java.util.Date;
public class DerivativeInfoMsgImpl implements DataMessage {
private String symbol;
private int locateCode;
private String rootSymbol;
private Date expiration;
private Date delivery;
private Long openInterest;
private Integer contractSize;
private Character callPutIndicator;
private Price minTickSize;
public String getSymbol() {
return symbol;
}
public void setSymbol(String symbol) {
this.symbol = symbol;
}
public int getLocateCode() {
return locateCode;
}
public void setLocateCode(int locateCode) {
this.locateCode = locateCode;
}
public String getRootSymbol() {
return rootSymbol;
}
public void setRootSymbol(String rootSymbol) {
this.rootSymbol = rootSymbol;
}
public Date getExpiration() {
return expiration;
}
public void setExpiration(Date expiration) {
this.expiration = expiration;
}
public Date getDelivery() {
return delivery;
}
public void setDelivery(Date delivery) {
this.delivery = delivery;
}
public Long getOpenInterest() {
return openInterest;
}
public void setOpenInterest(Long openInterest) {
this.openInterest = openInterest;
}
public Integer getContractSize() {
return contractSize;
}
public void setContractSize(Integer contractSize) {
this.contractSize = contractSize;
}
public Character getCallPutIndicator() {
return callPutIndicator;
}
public void setCallPutIndicator(Character callPutIndicator) {
this.callPutIndicator = callPutIndicator;
}
public Price getMinTickSize() {
return minTickSize;
}
public void setMinTickSize(Price minTickSize) {
this.minTickSize = minTickSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy