Files
ai-agent/internal/pkg/openidentity/openidentity.go
T

13 lines
508 B
Go
Raw Normal View History

2026-04-09 10:01:23 +08:00
package openidentity
import "code.tczkiot.com/wlw/ai-agent/internal/pkg/enums"
2026-04-09 10:01:23 +08:00
// ExternalUser is a be-system user identity adapted for customer-service
// conversations. Authentication is completed by the host before this value is
// created; this package contains no token parsing or verification.
type ExternalUser struct {
2026-04-09 10:01:23 +08:00
ExternalSource enums.ExternalSource `json:"externalSource"`
ExternalID string `json:"externalId"`
ExternalName string `json:"externalName"`
}