mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-26 00:03:09 -06:00
8 lines
231 B
Go
8 lines
231 B
Go
package openid
|
|
|
|
// TokenRequest represents the request defined at https://matrix.org/docs/spec/client_server/r0.6.1#id603
|
|
type TokenRequest struct {
|
|
UserID string `json:"userId"`
|
|
RelyingParty string `json:"relyingParty"`
|
|
}
|