Interface IBookData

interface IBookData {
    asks: [string, string][];
    bids: [string, string][];
    createTime: number;
    id: number;
    symbol: string;
    ts: number;
}

Properties

asks: [string, string][]
bids: [string, string][]
createTime: number
id: number
symbol: string
ts: number