/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 29e48bf14720 */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * Severity levels for DLP findings and analyses. */ export const DlpSeverity = { Unspecified: "UNSPECIFIED", Low: "LOW", Medium: "MEDIUM", High: "HIGH", } as const; /** * Severity levels for DLP findings and analyses. */ export type DlpSeverity = OpenEnum; /** @internal */ export const DlpSeverity$inboundSchema: z.ZodType< DlpSeverity, z.ZodTypeDef, unknown > = openEnums.inboundSchema(DlpSeverity); /** @internal */ export const DlpSeverity$outboundSchema: z.ZodType< string, z.ZodTypeDef, DlpSeverity > = openEnums.outboundSchema(DlpSeverity);