/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: be0c932bc15d */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * The status of the policy/report. Only ACTIVE status will be picked for scans. */ export const DlpReportStatus = { Active: "ACTIVE", Inactive: "INACTIVE", Cancelled: "CANCELLED", None: "NONE", } as const; /** * The status of the policy/report. Only ACTIVE status will be picked for scans. */ export type DlpReportStatus = OpenEnum; /** @internal */ export const DlpReportStatus$inboundSchema: z.ZodType< DlpReportStatus, z.ZodTypeDef, unknown > = openEnums.inboundSchema(DlpReportStatus); /** @internal */ export const DlpReportStatus$outboundSchema: z.ZodType< string, z.ZodTypeDef, DlpReportStatus > = openEnums.outboundSchema(DlpReportStatus);