edgeport - v1.0.6
    Preparing search index...

    Interface SendOptions

    Options for XmppSession.send.

    interface SendOptions {
        body: string;
        id?: string;
        subject?: string;
        thread?: string;
        to: string;
        type?: string;
    }
    Index
    body: string

    The body text.

    id?: string

    An explicit message id; a random one is generated when omitted.

    subject?: string

    An optional subject.

    thread?: string

    An optional conversation thread id.

    to: string

    The recipient JID.

    type?: string

    The message type; defaults to chat.