emailVerified property

  1. @TagNumber.new(3)
bool get emailVerified

Azure AD doesn't send if the email has been verified. Enable this if the user email should always be added verified in ZITADEL (no verification emails will be sent).

Implementation

@$pb.TagNumber(3)
$core.bool get emailVerified => $_getBF(2);
  1. @TagNumber.new(3)
set emailVerified (bool value)

Implementation

@$pb.TagNumber(3)
set emailVerified($core.bool value) => $_setBool(2, value);