URL context result content.

interface URLContextResultContent {
    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 url context call block.

is_error?: boolean

Whether the URL context resulted in an error.

The results of the URL context.

signature?: string

The signature of the URL context result.

type: "url_context_result"

Used as the OpenAPI type discriminator for the content oneof.