edgeport - v1.0.6
    Preparing search index...

    Interface XmppPresence

    An inbound presence update delivered to XmppSession.presence.

    interface XmppPresence {
        element: XmlElement;
        from: string;
        priority?: number;
        show?: string;
        status?: string;
        to: string;
        type?: string;
    }
    Index
    element: XmlElement

    The raw stanza element.

    from: string

    The sender's JID (from).

    priority?: number

    The numeric priority, when present.

    show?: string

    The show value (away, dnd, xa, chat), when present.

    status?: string

    The free-text status, when present.

    to: string

    The recipient's JID (to).

    type?: string

    The presence type (unavailable, subscribe, error, ...); absent = available.