Interface JournalEntry

Journal Entry of TradeHistory

interface JournalEntry {
    account: string;
    accountRS: string;
    asset: string;
    decimals: number;
    executedQuantityQNT: string;
    executedVolumeNQT: string;
    height: number;
    name: string;
    order: string;
    price: string;
    priceNQT: string;
    quantityQNT: string;
    status: "filled" | "open" | "cancelled";
    timestamp: number;
    trades: AssetTrade[];
    type: "bid" | "ask";
}

Properties

account: string
accountRS: string
asset: string
decimals: number
executedQuantityQNT: string
executedVolumeNQT: string
height: number
name: string
order: string
price: string
priceNQT: string
quantityQNT: string
status: "filled" | "open" | "cancelled"
timestamp: number
trades: AssetTrade[]
type: "bid" | "ask"