public interface StreamAggregatedQuoteRequestV2OrBuilder
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCode()
Instrument code.
|
com.google.protobuf.ByteString |
getCodeBytes()
Instrument code.
|
boolean |
getIncludeUnvettedPrice()
Whether to add an additionnal data point including all exchanges covered by Kaiko Top Of Book Stream for computation.
|
java.lang.String |
getInstrumentClass()
Instrument class.
|
com.google.protobuf.ByteString |
getInstrumentClassBytes()
Instrument class.
|
DataInterval |
getInterval()
Data interval.
|
DataIntervalOrBuilder |
getIntervalOrBuilder()
Data interval.
|
boolean |
hasInterval()
Data interval.
|
java.lang.String getInstrumentClass()
Instrument class. See https://docs.kaiko.com/?python#instruments.
string instrument_class = 1;
com.google.protobuf.ByteString getInstrumentClassBytes()
Instrument class. See https://docs.kaiko.com/?python#instruments.
string instrument_class = 1;
java.lang.String getCode()
Instrument code. See https://docs.kaiko.com/?python#instruments.
string code = 2;
com.google.protobuf.ByteString getCodeBytes()
Instrument code. See https://docs.kaiko.com/?python#instruments.
string code = 2;
boolean hasInterval()
Data interval. For historical data only.
.kaikosdk.DataInterval interval = 3;
DataInterval getInterval()
Data interval. For historical data only.
.kaikosdk.DataInterval interval = 3;
DataIntervalOrBuilder getIntervalOrBuilder()
Data interval. For historical data only.
.kaikosdk.DataInterval interval = 3;
boolean getIncludeUnvettedPrice()
Whether to add an additionnal data point including all exchanges covered by Kaiko Top Of Book Stream for computation. This should be used whenever an asset is not part of the vetted list. Beware that exchange vetted list changes every quarter, so if there is only 1 exchange covering this asset, you should use `unvetted` as backup to `vetted` to always have a price.
bool include_unvetted_price = 4;