Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 1.54 KB

AuthenticationOAuth2Session.md

File metadata and controls

20 lines (16 loc) · 1.54 KB

AuthenticationOAuth2Session

Properties

Name Type Description Notes
Allowed bool Allowed is true if the request is allowed and false otherwise. [optional] [default to null]
Aud []string [optional] [default to null]
ClientId string ClientID is the id of the OAuth2 client that requested the token. [optional] [default to null]
Exp time.Time ExpiresAt is the expiry timestamp. [optional] [default to null]
Iat time.Time IssuedAt is the token creation time stamp. [optional] [default to null]
Iss string Issuer is the id of the issuer, typically an hydra instance. [optional] [default to null]
Nbf time.Time [optional] [default to null]
Scope string GrantedScopes is a list of scopes that the subject authorized when asked for consent. [optional] [default to null]
Session map[string]interface{} Session represents arbitrary session data. [optional] [default to null]
Sub string Subject is the identity that authorized issuing the token, for example a user or an OAuth2 app. This is usually a uuid but you can choose a urn or some other id too. [optional] [default to null]
Username string [optional] [default to null]

[Back to Model list] [Back to API list] [Back to README]