plainTextPassword property

  1. @TagNumber.new(13)
String get plainTextPassword

@mandatory

@description The raw plain text password string supplied for account registration. This token is cryptographically hashed before commitment to persistent storage.

@example "S3cureP@ssword123!"

@regex .+

@format Must be a non-empty string meeting organizational length and entropy guidelines.

Implementation

@$pb.TagNumber(13)
$core.String get plainTextPassword => $_getSZ(7);
  1. @TagNumber.new(13)
set plainTextPassword (String value)

Implementation

@$pb.TagNumber(13)
set plainTextPassword($core.String value) => $_setString(7, value);