Files
zitadel/apps/api/internal/user/model/external_idp.go
2025-08-05 15:20:32 -07:00

18 lines
327 B
Go

package model
import (
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
)
type ExternalIDP struct {
es_models.ObjectRoot
IDPConfigID string
UserID string
DisplayName string
}
func (idp *ExternalIDP) IsValid() bool {
return idp.AggregateID != "" && idp.IDPConfigID != "" && idp.UserID != ""
}