-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathobject.py
More file actions
31 lines (23 loc) · 693 Bytes
/
object.py
File metadata and controls
31 lines (23 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import typing
from pydantic import BaseModel
class FileMetrics(BaseModel):
fileName: str
unitName: str
impactCount: int
transImpactCount: int
impactEntries: int
impactLineCount: int
totalLineCount: int
# extras
affectedLinePercentRepr: str = ""
affectedDirectConnectRepr: str = ""
affectIndirectConnectRepr: str = ""
class MetricsResponse(BaseModel):
data: typing.List[FileMetrics]
class StatGlobal(BaseModel):
unitLevel: str
unitMapping: typing.Dict[str, int] = dict()
impactUnits: typing.List[int] = []
transImpactUnits: typing.List[int] = []
entries: typing.List[int] = []
impactEntries: typing.List[int] = []