2023-04-24 04:33:00 +02:00
|
|
|
from typing import Dict, Any, List
|
2023-04-16 01:43:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
class HonParameter:
|
2023-05-06 16:07:28 +02:00
|
|
|
def __init__(self, key: str, attributes: Dict[str, Any], group: str) -> None:
|
2023-04-16 01:43:37 +02:00
|
|
|
self._key = key
|
|
|
|
self._category: str = attributes.get("category", "")
|
|
|
|
self._typology: str = attributes.get("typology", "")
|
|
|
|
self._mandatory: int = attributes.get("mandatory", 0)
|
|
|
|
self._value: str | float = ""
|
2023-05-06 16:07:28 +02:00
|
|
|
self._group: str = group
|
2023-04-16 01:43:37 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def key(self) -> str:
|
|
|
|
return self._key
|
|
|
|
|
|
|
|
@property
|
|
|
|
def value(self) -> str | float:
|
|
|
|
return self._value if self._value is not None else "0"
|
|
|
|
|
2023-04-24 04:33:00 +02:00
|
|
|
@property
|
|
|
|
def values(self) -> List[str]:
|
2023-05-06 16:07:28 +02:00
|
|
|
return [str(self.value)]
|
2023-04-24 04:33:00 +02:00
|
|
|
|
2023-04-16 01:43:37 +02:00
|
|
|
@property
|
|
|
|
def category(self) -> str:
|
|
|
|
return self._category
|
|
|
|
|
|
|
|
@property
|
|
|
|
def typology(self) -> str:
|
|
|
|
return self._typology
|
|
|
|
|
|
|
|
@property
|
|
|
|
def mandatory(self) -> int:
|
|
|
|
return self._mandatory
|
2023-05-06 16:07:28 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def group(self) -> str:
|
|
|
|
return self._group
|