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

InitialAccessBrokerFindingDetail

import type { InitialAccessBrokerFindingDetail } from "https://googleapis.deno.dev/v1/threatintelligence:v1beta.ts";

A detail object for an Initial Access Broker (IAB) finding.

interface InitialAccessBrokerFindingDetail {
documentId?: string;
matchScore?: number;
severity?:
| "SEVERITY_UNSPECIFIED"
| "LOW"
| "MEDIUM"
| "HIGH"
| "CRITICAL";
}

§Properties

§
documentId?: string
[src]

Required. The unique identifier of the document that triggered the IAB finding. This ID can be used to retrieve the content of the document for further analysis.

§
matchScore?: number
[src]

Required. Reference to the match score of the IAB finding. This is a float value between 0 and 1 calculated by the matching engine based on the similarity of the document and the user provided configurations.

§
severity?: "SEVERITY_UNSPECIFIED" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL"
[src]

Required. The severity of the IAB finding. This indicates the potential impact of the threat.