in orderbook-core/src/main/java/com/epam/deltix/orderbook/core/impl/MutableOrderBookQuoteTimestampImpl.java [64:89]
public StringBuilder toString(final StringBuilder str) {
str.append("{ \"$type\": \"Quote\"");
str.append("{ \"hashcode\": ").append(this.hashCode());
if (hasPrice()) {
str.append(", \"price\": ");
Decimal64Utils.appendTo(getPrice(), str);
}
if (hasSize()) {
str.append(", \"size\": ");
Decimal64Utils.appendTo(getSize(), str);
}
if (hasNumberOfOrders()) {
str.append(", \"numberOfOrders\": ").append(getNumberOfOrders());
}
if (hasExchangeId()) {
str.append(", \"exchangeId\": ").append(AlphanumericUtils.toString(getExchangeId()));
}
if (hasOriginalTimestamp()) {
str.append(", \"originalTimestamp\": ").append(getOriginalTimestamp());
}
if (hasTimestamp()) {
str.append(", \"timestamp\": ").append(getTimestamp());
}
str.append("}");
return str;
}