interface MCPServerToolResultDelta {
    call_id?: string;
    name?: string;
    result?:
        | string
        | GeminiNextGenAPIClient.Interactions.ContentDelta.MCPServerToolResultDelta.Items;
    server_name?: string;
    type: "mcp_server_tool_result";
}

Properties

call_id?: string

ID to match the ID from the function call block.

name?: string

Tool call result delta.

server_name?: string
type: "mcp_server_tool_result"

Used as the OpenAPI type discriminator for the content oneof.