import type { FirewallExceptionStatusV3 } from '../schemas/FirewallExceptionStatusV3'; /** * Request to approve or reject a firewall exception */ export interface FirewallExceptionApprovalRequestV3 { /** * Note from approver explaining the decision */ notes?: string | null; status: FirewallExceptionStatusV3; }