mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 20:08:02 +00:00
8 lines
123 B
Go
8 lines
123 B
Go
|
package domain
|
||
|
|
||
|
const VerifiedTypeSuffix = "domain.verified"
|
||
|
|
||
|
type VerifiedPayload struct {
|
||
|
Name string `json:"domain"`
|
||
|
}
|