Returns the dictionary object representing this object.
(self)
| 216 | self.update_auth_sources() |
| 217 | |
| 218 | def as_dict(self): |
| 219 | """ |
| 220 | Returns the dictionary object representing this object. |
| 221 | """ |
| 222 | |
| 223 | res = dict() |
| 224 | res['source_friendly_name'] = self.source_friendly_name |
| 225 | res['auth_sources'] = self.auth_sources |
| 226 | res['current_source'] = self.current_source |
| 227 | |
| 228 | return res |
| 229 | |
| 230 | def update_auth_sources(self): |
| 231 | # Only mutate the ordered list of auth sources when a user explicitly |
no outgoing calls
no test coverage detected