mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-15 15:34:18 +00:00
19 lines
333 B
Go
19 lines
333 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import (
|
||
|
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Token struct {
|
||
|
|
es_models.ObjectRoot
|
||
|
|
|
||
|
|
TokenID string
|
||
|
|
ApplicationID string
|
||
|
|
UserAgentID string
|
||
|
|
Audience []string
|
||
|
|
Expiration time.Time
|
||
|
|
Scopes []string
|
||
|
|
PreferredLanguage string
|
||
|
|
}
|