mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
19 lines
343 B
Go
19 lines
343 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
es_models "github.com/caos/zitadel/internal/eventstore/v1/models"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type RefreshToken struct {
|
||
|
es_models.ObjectRoot
|
||
|
|
||
|
TokenID string
|
||
|
ApplicationID string
|
||
|
UserAgentID string
|
||
|
Audience []string
|
||
|
Expiration time.Time
|
||
|
Scopes []string
|
||
|
PreferredLanguage string
|
||
|
}
|