[docs]classDataSolutionsClient:""" This class provides SDK functions for users to query Data Solutions databases. """def__init__(self,api_key:str,):""" Initialize the DataSolutionsClient class. :param api_key: The API key for the Data Solutions API :type api_key: str """self.api_key=api_keyself._sql=Sql(self.api_key)self._orm=Orm(self.api_key)self._utils=Utils()@propertydefsql(self)->Sql:""" Call the sql property to access the Sql class. """returnself._sql@propertydeform(self)->Orm:""" Call the orm property to access the Orm class. """returnself._orm@propertydefutils(self)->Utils:""" Call the utils property to access the Utils class. """returnself._utils