FutureRealTimeTickMessage constructor
FutureRealTimeTickMessage({
- String? code,
- String? dateTime,
- double? open,
- double? underlyingPrice,
- Int64? bidSideTotalVol,
- Int64? askSideTotalVol,
- double? avgPrice,
- double? close,
- double? high,
- double? low,
- double? amount,
- double? totalAmount,
- Int64? volume,
- Int64? totalVolume,
- Int64? tickType,
- Int64? chgType,
- double? priceChg,
- double? pctChg,
- bool? simtrade,
Implementation
factory FutureRealTimeTickMessage({
$core.String? code,
$core.String? dateTime,
$core.double? open,
$core.double? underlyingPrice,
$fixnum.Int64? bidSideTotalVol,
$fixnum.Int64? askSideTotalVol,
$core.double? avgPrice,
$core.double? close,
$core.double? high,
$core.double? low,
$core.double? amount,
$core.double? totalAmount,
$fixnum.Int64? volume,
$fixnum.Int64? totalVolume,
$fixnum.Int64? tickType,
$fixnum.Int64? chgType,
$core.double? priceChg,
$core.double? pctChg,
$core.bool? simtrade,
}) {
final $result = create();
if (code != null) {
$result.code = code;
}
if (dateTime != null) {
$result.dateTime = dateTime;
}
if (open != null) {
$result.open = open;
}
if (underlyingPrice != null) {
$result.underlyingPrice = underlyingPrice;
}
if (bidSideTotalVol != null) {
$result.bidSideTotalVol = bidSideTotalVol;
}
if (askSideTotalVol != null) {
$result.askSideTotalVol = askSideTotalVol;
}
if (avgPrice != null) {
$result.avgPrice = avgPrice;
}
if (close != null) {
$result.close = close;
}
if (high != null) {
$result.high = high;
}
if (low != null) {
$result.low = low;
}
if (amount != null) {
$result.amount = amount;
}
if (totalAmount != null) {
$result.totalAmount = totalAmount;
}
if (volume != null) {
$result.volume = volume;
}
if (totalVolume != null) {
$result.totalVolume = totalVolume;
}
if (tickType != null) {
$result.tickType = tickType;
}
if (chgType != null) {
$result.chgType = chgType;
}
if (priceChg != null) {
$result.priceChg = priceChg;
}
if (pctChg != null) {
$result.pctChg = pctChg;
}
if (simtrade != null) {
$result.simtrade = simtrade;
}
return $result;
}