@theophilusdev/conduit
    Preparing search index...

    Interface MessageReadPayload

    interface MessageReadPayload {
        readerID: string;
        threadID: string;
        time: string;
        type: "message:read";
        send(body: ConduitSendableBody): Promise<SentMessage>;
        shareContact(
            message: ConduitSendableBody,
            userID: string,
        ): Promise<SentMessage>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    readerID: string
    threadID: string
    time: string
    type: "message:read"

    Methods