bitfinex-node-api
    Preparing search index...

    Interface INotificationV2<T>

    Bitfinex v2 notification envelope returned by most write endpoints: [MTS, TYPE, MESSAGE_ID, _, DATA, CODE, STATUS, TEXT].

    interface INotificationV2<T> {
        code: number | null;
        data: T;
        message_id: number | null;
        mts: number;
        status: string;
        text: string | null;
        type: string;
    }

    Type Parameters

    • T
    Index

    Properties

    code: number | null
    data: T
    message_id: number | null
    mts: number
    status: string
    text: string | null
    type: string