1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-04-26 01:20:51 +00:00

21 lines
349 B
Go
Raw Normal View History

package domain
type IdentityProviderType int8
const (
IdentityProviderTypeSystem IdentityProviderType = iota
IdentityProviderTypeOrg
identityProviderCount
)
type IdentityProviderState int32
const (
IdentityProviderStateUnspecified IdentityProviderState = iota
IdentityProviderStateActive
IdentityProviderStateRemoved
idpProviderState
)