password property

  1. @TagNumber(1)
String get password

Provide the plain text password. ZITADEL will take care to store it in a secure way (hash).

Implementation

@$pb.TagNumber(1)
$core.String get password => $_getSZ(0);
  1. @TagNumber(1)
set password (String v)

Implementation

@$pb.TagNumber(1)
set password($core.String v) { $_setString(0, v); }