import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DlpFindingFilter } from "./dlpfindingfilter.js"; import { DlpIssueFilter } from "./dlpissuefilter.js"; import { DlpPerson } from "./dlpperson.js"; /** * The type of export to perform */ export declare const ExportInfoExportType: { readonly Findings: "FINDINGS"; readonly Documents: "DOCUMENTS"; readonly Issues: "ISSUES"; }; /** * The type of export to perform */ export type ExportInfoExportType = OpenEnum; /** * The status of the export */ export declare const ExportInfoStatus: { readonly Pending: "PENDING"; readonly Completed: "COMPLETED"; readonly Failed: "FAILED"; }; /** * The status of the export */ export type ExportInfoStatus = OpenEnum; export type ExportInfo = { /** * Details about the person who created this report/policy. */ createdBy?: DlpPerson | undefined; /** * Timestamp at which this export started. */ startTime?: string | undefined; /** * Timestamp at which this export completed. */ endTime?: string | undefined; /** * The ID of the export */ exportId?: string | undefined; /** * The name of the file to export the findings to */ fileName?: string | undefined; /** * The type of export to perform */ exportType?: ExportInfoExportType | undefined; filter?: DlpFindingFilter | undefined; /** * Filter for DLP issues. Includes document-level filters and issue-specific filters. */ issueFilter?: DlpIssueFilter | undefined; /** * The status of the export */ status?: ExportInfoStatus | undefined; /** * The size of the exported file in bytes */ exportSize?: number | undefined; }; /** @internal */ export declare const ExportInfoExportType$inboundSchema: z.ZodType; /** @internal */ export declare const ExportInfoStatus$inboundSchema: z.ZodType; /** @internal */ export declare const ExportInfo$inboundSchema: z.ZodType; export declare function exportInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=exportinfo.d.ts.map