@mywebapi.com/sdk - v0.1.0
    Preparing search index...

    Interface TickPayload

    interface TickPayload {
        ask: number;
        bid: number;
        lastTime: string | null;
        symbol: string;
    }
    Index

    Properties

    Properties

    ask: number
    bid: number
    lastTime: string | null

    ISO-8601 string when serialised over the wire; SignalR's JSON protocol does not auto-revive Date. Parse on the consumer side if needed.

    symbol: string