Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GooglePrivacyDlpV2CharsToIgnore

import type { GooglePrivacyDlpV2CharsToIgnore } from "https://googleapis.deno.dev/v1/dlp:v2.ts";

Characters to skip when doing deidentification of a value. These will be left alone and skipped.

interface GooglePrivacyDlpV2CharsToIgnore {
charactersToSkip?: string;
commonCharactersToIgnore?:
| "COMMON_CHARS_TO_IGNORE_UNSPECIFIED"
| "NUMERIC"
| "ALPHA_UPPER_CASE"
| "ALPHA_LOWER_CASE"
| "PUNCTUATION"
| "WHITESPACE";
}

§Properties

§
charactersToSkip?: string
[src]

Characters to not transform when masking.

§
commonCharactersToIgnore?: "COMMON_CHARS_TO_IGNORE_UNSPECIFIED" | "NUMERIC" | "ALPHA_UPPER_CASE" | "ALPHA_LOWER_CASE" | "PUNCTUATION" | "WHITESPACE"
[src]

Common characters to not transform when masking. Useful to avoid removing punctuation.