SubstringMatchCriteria
import type { SubstringMatchCriteria } from "https://googleapis.deno.dev/v1/docs:v1.ts";
A criteria that matches a specific string of text in the document.
interface SubstringMatchCriteria {
matchCase?: boolean;
searchByRegex?: boolean;
text?: string;
}§Properties
§
matchCase?: boolean
[src]Indicates whether the search should respect case: - True
: the search is
case sensitive. - False
: the search is case insensitive.