Account represents a Matrix account on this home server.
| 448 | |
| 449 | // Account represents a Matrix account on this home server. |
| 450 | type Account struct { |
| 451 | UserID string |
| 452 | Localpart string |
| 453 | ServerName gomatrixserverlib.ServerName |
| 454 | AppServiceID string |
| 455 | AccountType AccountType |
| 456 | // TODO: Associations (e.g. with application services) |
| 457 | } |
| 458 | |
| 459 | // OpenIDToken represents an OpenID token |
| 460 | type OpenIDToken struct { |
nothing calls this directly
no outgoing calls
no test coverage detected