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

PriorityAnalysis

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

Structured priority analysis for a threat.

interface PriorityAnalysis {
confidence?:
| "CONFIDENCE_LEVEL_UNSPECIFIED"
| "CONFIDENCE_LEVEL_LOW"
| "CONFIDENCE_LEVEL_MEDIUM"
| "CONFIDENCE_LEVEL_HIGH";
priorityLevel?:
| "PRIORITY_LEVEL_UNSPECIFIED"
| "PRIORITY_LEVEL_LOW"
| "PRIORITY_LEVEL_MEDIUM"
| "PRIORITY_LEVEL_HIGH"
| "PRIORITY_LEVEL_CRITICAL";
reasoning?: string;
}

§Properties

§
confidence?: "CONFIDENCE_LEVEL_UNSPECIFIED" | "CONFIDENCE_LEVEL_LOW" | "CONFIDENCE_LEVEL_MEDIUM" | "CONFIDENCE_LEVEL_HIGH"
[src]

The level of confidence in the given verdict.

§
priorityLevel?: "PRIORITY_LEVEL_UNSPECIFIED" | "PRIORITY_LEVEL_LOW" | "PRIORITY_LEVEL_MEDIUM" | "PRIORITY_LEVEL_HIGH" | "PRIORITY_LEVEL_CRITICAL"
[src]

The level of Priority.

§
reasoning?: string
[src]

Human-readable explanation from the model, detailing why a particular result is considered to have a certain priority.