Coverage for intelligence_toolkit/detect_entity_networks/classes.py: 55%
11 statements
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-16 13:41 -0300
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-16 13:41 -0300
1# Copyright (c) 2024 Microsoft Corporation. All rights reserved.
2# Licensed under the MIT license. See LICENSE file in the project.
3#
5from enum import Enum
8class FlagAggregatorType(Enum):
9 Instance = "Instance"
10 Count = "Count"
12class SummaryData:
13 def __init__(self, entities, attributes, flags, groups, links) -> None:
14 self.entities = entities
15 self.attributes = attributes
16 self.flags = flags
17 self.groups = groups
18 self.links = links