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

GooglePrivacyDlpV2SummaryResult

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

A collection that informs the user the number of times a particular TransformationResultCode and error details occurred.

interface GooglePrivacyDlpV2SummaryResult {
code?: "TRANSFORMATION_RESULT_CODE_UNSPECIFIED" | "SUCCESS" | "ERROR";
count?: bigint;
details?: string;
}

§Properties

§
code?: "TRANSFORMATION_RESULT_CODE_UNSPECIFIED" | "SUCCESS" | "ERROR"
[src]

Outcome of the transformation.

§
count?: bigint
[src]

Number of transformations counted by this result.

§
details?: string
[src]

A place for warnings or errors to show up if a transformation didn't work as expected.