14 lines
318 B
Go
14 lines
318 B
Go
|
package hydra
|
||
|
|
||
|
type AcceptRequest struct {
|
||
|
Subject string `json:"subject"`
|
||
|
Remember bool `json:"remember"`
|
||
|
RememberFor int `json:"remember_for"`
|
||
|
ACR string `json:"acr"`
|
||
|
}
|
||
|
|
||
|
type RejectRequest struct {
|
||
|
Error string `json:"error"`
|
||
|
ErrorDescription string `json:"error_description"`
|
||
|
}
|