interface URLContextResultDelta {
    call_id: string;
    is_error?: boolean;
    result: GeminiNextGenAPIClient.Interactions.URLContextResult[];
    signature?: string;
    type: "url_context_result";
}

Properties

call_id: string

ID to match the ID from the function call block.

is_error?: boolean
signature?: string

A signature hash for backend validation.

type: "url_context_result"