WebPageCopyimport type { WebPage } from "https://googleapis.deno.dev/v1/vision:v1.ts";Metadata for web pages. interface WebPage {fullMatchingImages?: WebImage[];pageTitle?: string;partialMatchingImages?: WebImage[];score?: number;url?: string;}§Properties§fullMatchingImages?: WebImage[][src]Fully matching images on the page. Can include resized copies of the query image. §pageTitle?: string[src]Title for the web page, may contain HTML markups. §partialMatchingImages?: WebImage[][src]Partial matching images on the page. Those images are similar enough to share some key-point features. For example an original image will likely have partial matching for its crops. §score?: number[src](Deprecated) Overall relevancy score for the web page. §url?: string[src]The result web page URL.