Member Junction
    Preparing search index...

    Response from a client-side tool invocation.

    interface ClientToolResponse {
        Data?: Record<string, unknown>;
        ErrorMessage?: string;
        RequestID: string;
        RespondedAt: Date;
        Success: boolean;
    }
    Index

    Properties

    Data?: Record<string, unknown>

    Result data from the tool

    ErrorMessage?: string

    Error message if not successful

    RequestID: string

    Correlates to the original RequestID

    RespondedAt: Date

    Timestamp of the response

    Success: boolean

    Whether the client tool executed successfully