edgeport - v1.0.3
    Preparing search index...

    Interface SipInboundMessage

    An inbound pager-mode message delivered to SipSession.messages.

    interface SipInboundMessage {
        body: Uint8Array;
        contentType?: string;
        from: string;
        to: string;
        text(): string;
    }
    Index
    body: Uint8Array

    The raw body octets.

    contentType?: string

    The Content-Type, if present.

    from: string

    The From header value.

    to: string

    The To header value.