Documentation
    Preparing search index...

    Interface IMQRPCResponse

    Response message data structure, which service replies to handled requests.

    interface IMQRPCResponse {
        data: null | JsonObject;
        error: null | IMQRPCError;
        request: IMQRPCRequest;
        to: string;
        [key: string]: AnyJson;
    }

    Hierarchy

    • JsonObject
      • IMQRPCResponse

    Indexable

    • [key: string]: AnyJson
    Index

    Properties

    Properties

    data: null | JsonObject
    error: null | IMQRPCError
    request: IMQRPCRequest
    to: string