pyh0n/pyhon/parameter/base.py

40 lines
981 B
Python
Raw Normal View History

2023-04-24 08:03:00 +05:30
from typing import Dict, Any, List
2023-04-16 05:13:37 +05:30
class HonParameter:
2023-05-06 19:37:28 +05:30
def __init__(self, key: str, attributes: Dict[str, Any], group: str) -> None:
2023-04-16 05:13:37 +05:30
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 19:37:28 +05:30
self._group: str = group
2023-04-16 05:13:37 +05:30
@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 08:03:00 +05:30
@property
def values(self) -> List[str]:
2023-05-06 19:37:28 +05:30
return [str(self.value)]
2023-04-24 08:03:00 +05:30
2023-04-16 05:13:37 +05:30
@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 19:37:28 +05:30
@property
def group(self) -> str:
return self._group