Returns whether the user_id exists on the network.
(self)
| 144 | |
| 145 | @property |
| 146 | def exists(self) -> bool: |
| 147 | """Returns whether the user_id exists on the network.""" |
| 148 | success, response = self.base_api.auth_idexists(self.user_id) |
| 149 | return True if str(response).lower() == 'true' else False |
| 150 | |
| 151 | |
| 152 | def get_user_network_info (self) -> dict: |