mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
16 lines
584 B
Go
16 lines
584 B
Go
package oidc
|
|
|
|
import "github.com/caos/zitadel/internal/crypto"
|
|
|
|
type AddedEvent struct {
|
|
eventstore.BaseEvent
|
|
|
|
IDPConfigID string `json:"idpConfigId"`
|
|
ClientID string `json:"clientId"`
|
|
Secret *crypto.CryptoValue `json:"clientSecret"`
|
|
Issuer string `json:"issuer"`
|
|
Scopes []string `json:"scpoes"`
|
|
IDPDisplayNameMapping int32 `json:"idpDisplayNameMapping,omitempty"`
|
|
UsernameMapping int32 `json:"usernameMapping,omitempty"`
|
|
}
|