---------------------------------------------------------------------- This is the API documentation for the gdtest_hatch_nodoc library. ---------------------------------------------------------------------- ## Dataclasses Dataclass definitions Config(name: str, debug: bool = False, max_retries: int = 3) -> None Application configuration. Parameters ---------- name : str The application name. debug : bool Whether debug mode is enabled. max_retries : int Maximum retry attempts. UserProfile(username: str, email: str, roles: list[str] = ) -> None User profile information. Parameters ---------- username : str The user's login name. email : str The user's email address. roles : list[str] Assigned roles. ## Functions Utility functions create_config(name: str, **kwargs) -> gdtest_hatch_nodoc.models.Config Create a Config instance with defaults. Parameters ---------- name : str The application name. **kwargs Additional config fields. Returns ------- Config A new Config instance.