@servicenow/sdk - v4.4.1
    Preparing search index...

    Response by server to client request message.

    interface PrepareCallHierarchyResponse {
        body:
            | ChangePropertyTypes<
                tsc.CallHierarchyItem,
                {
                    selectionSpan: tsc.server.protocol.TextSpan;
                    span: tsc.server.protocol.TextSpan;
                },
            >
            | ChangePropertyTypes<
                tsc.CallHierarchyItem,
                {
                    selectionSpan: tsc.server.protocol.TextSpan;
                    span: tsc.server.protocol.TextSpan;
                },
            >[];
        command: string;
        message?: string;
        metadata?: unknown;
        performanceData?: PerformanceData;
        request_seq: number;
        seq: number;
        success: boolean;
        type: "response";
    }

    Hierarchy (View Summary)

    Index

    Properties

    body:
        | ChangePropertyTypes<
            tsc.CallHierarchyItem,
            {
                selectionSpan: tsc.server.protocol.TextSpan;
                span: tsc.server.protocol.TextSpan;
            },
        >
        | ChangePropertyTypes<
            tsc.CallHierarchyItem,
            {
                selectionSpan: tsc.server.protocol.TextSpan;
                span: tsc.server.protocol.TextSpan;
            },
        >[]

    Contains message body if success === true.

    command: string

    The command requested.

    message?: string

    If success === false, this should always be provided. Otherwise, may (or may not) contain a success message.

    metadata?: unknown

    Contains extra information that plugin can include to be passed on

    performanceData?: PerformanceData

    Exposes information about the performance of this request-response pair.

    request_seq: number

    Sequence number of the request message.

    seq: number

    Sequence number of the message

    success: boolean

    Outcome of the request.

    type: "response"

    One of "request", "response", or "event"