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

GooglePrivacyDlpV2ByteContentItem

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

Container for bytes to inspect or redact.

interface GooglePrivacyDlpV2ByteContentItem {
data?: Uint8Array;
type?:
| "BYTES_TYPE_UNSPECIFIED"
| "IMAGE"
| "IMAGE_JPEG"
| "IMAGE_BMP"
| "IMAGE_PNG"
| "IMAGE_SVG"
| "TEXT_UTF8"
| "WORD_DOCUMENT"
| "PDF"
| "POWERPOINT_DOCUMENT"
| "EXCEL_DOCUMENT"
| "AVRO"
| "CSV"
| "TSV";
}

§Properties

§
data?: Uint8Array
[src]

Content data to inspect or redact.

§
type?: "BYTES_TYPE_UNSPECIFIED" | "IMAGE" | "IMAGE_JPEG" | "IMAGE_BMP" | "IMAGE_PNG" | "IMAGE_SVG" | "TEXT_UTF8" | "WORD_DOCUMENT" | "PDF" | "POWERPOINT_DOCUMENT" | "EXCEL_DOCUMENT" | "AVRO" | "CSV" | "TSV"
[src]

The type of data stored in the bytes string. Default will be TEXT_UTF8.