/** * Metadata counts for firewall exceptions */ export interface FirewallExceptionMetaV3 { /** * Number of exceptions with APPROVED status (non-expired) * @format int64 * @example 25 */ approvedCount: number; /** * Number of approved exceptions that have expired * @format int64 * @example 10 */ expiredCount: number; /** * Number of exceptions with PENDING status * @format int64 * @example 10 */ pendingCount: number; /** * Number of exceptions with REJECTED status * @format int64 * @example 5 */ rejectedCount: number; /** * Total number of exceptions * @format int64 * @example 50 */ totalCount: number; }