mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
19 lines
334 B
Go
19 lines
334 B
Go
|
package domain
|
||
|
|
||
|
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
|
||
|
}
|