dendrite/clientapi/openid/openid.go
2020-11-17 11:17:31 -05:00

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"`
}