edgeport - v1.0.6
    Preparing search index...

    Interface XmppMessage

    An inbound chat message delivered to XmppSession.messages.

    interface XmppMessage {
        body: string;
        element: XmlElement;
        from: string;
        id: string;
        subject?: string;
        thread?: string;
        to: string;
        type: string;
    }
    Index
    body: string

    The message body text (empty if none).

    element: XmlElement

    The raw stanza element for anything the concept fields do not cover.

    from: string

    The sender's JID (from).

    id: string

    The message id, if any.

    subject?: string

    The subject, when present.

    thread?: string

    The conversation thread id, when present.

    to: string

    The recipient's JID (to).

    type: string

    The message type (chat, groupchat, normal, headline, error).