15 lines
349 B
Go
15 lines
349 B
Go
package model
|
|
|
|
// OIDCWorkflowSession represent an OIDC workflow session.
|
|
type OIDCWorkflowSession struct {
|
|
ClientID string
|
|
RequestedScopes []string
|
|
GrantedScopes []string
|
|
RequestedAudience []string
|
|
GrantedAudience []string
|
|
TargetURI string
|
|
AuthURI string
|
|
Require2FA bool
|
|
CreatedTimestamp int64
|
|
}
|