---------------------------------------------------------------------- This is the API documentation for the gdtest_dataclasses library. ---------------------------------------------------------------------- ## Dataclasses Dataclass definitions Config(name: str, debug: bool = False, tags: list[str] = , settings: dict[str, str] = ) -> None Application configuration. Parameters ---------- name Configuration name. debug Whether debug mode is enabled. tags List of configuration tags. settings Additional settings dictionary. Record(id: int, value: str, timestamp: float = 0.0) -> None An immutable data record. Parameters ---------- id Unique record identifier. value The record value. timestamp When the record was created.