A 'inspect_reply' message on the 'shell' channel.

See Messaging in Jupyter.

See also: [[IInspectRequest]], [[IKernel.inspect]]

interface IInspectReplyMsg {
    buffers?: (ArrayBuffer | ArrayBufferView)[];
    channel: "shell";
    content: ReplyContent<IInspectReply>;
    header: IHeader<"inspect_reply">;
    metadata: JSONObject;
    parent_header: IHeader<"inspect_request">;
}

Hierarchy (view full)

Properties

buffers?: (ArrayBuffer | ArrayBufferView)[]

An optional list of binary buffers.

channel: "shell"

The channel on which the message is transmitted.

content: ReplyContent<IInspectReply>

The content of the message.

header: IHeader<"inspect_reply">

The message header.

metadata: JSONObject

Metadata associated with the message.

parent_header: IHeader<"inspect_request">

The parent message