/** * Execution settings for a condition row. */ export interface RuleImportRowSettings { /** Whether this row is active. */ enabled: boolean; /** Optional group ID for grouped aggregation. */ groupId: string | null; /** Row priority when multiple rows match. */ priority: number; /** Optional schedule constraints for this row. */ schedule: Record[]; /** When true, request cells in this row are evaluated with OR semantics. */ or?: boolean | undefined; /** Accepts any additional properties */ [key: string]: any; }