signaller/internal/models/whoami/whoami.go
2019-07-23 19:37:02 +05:00

7 lines
215 B
Go

package whoami
// https://matrix.org/docs/spec/client_server/latest#get-matrix-client-r0-account-whoami
type Response struct {
UserID string `json:"user_id"` // Required. The user id that owns the access token.
}