type
AuthSession
type AuthSession struct {
ID string
TokenHash string
CollectionID schema.StableID
UserID string
ExpiresAt time.Time
CreatedAt time.Time
LastSeenAt time.Time
IPAddress string
UserAgent string
}A persisted opaque session digest and safe metadata.
IDstring- The ID value.
TokenHashstring- The TokenHash value.
CollectionIDschema.StableID- The CollectionID value.
UserIDstring- The UserID value.
ExpiresAttime.Time- The ExpiresAt value.
CreatedAttime.Time- The CreatedAt value.
LastSeenAttime.Time- The LastSeenAt value.
IPAddressstring- The IPAddress value.
UserAgentstring- The UserAgent value.