A URL citation when using web search.

interface URLCitation {
    end_index: number;
    start_index: number;
    title: string;
    url: string;
}

Properties

end_index: number

The index of the last character of the URL citation in the message.

start_index: number

The index of the first character of the URL citation in the message.

title: string

The title of the web resource.

url: string

The URL of the web resource.