[docs]classHelloService(BaseService):"""Connection test operations."""
[docs]defping(self,*,headers:dict|None=None):"""Test the connection to the API. :param headers: Optional extra HTTP headers. """returnself._request("GET","/hello",headers=headers)