userComment property

  1. @TagNumber.new(2)
String get userComment

@optional

@description Audit log comment or justification for creating this action code. Useful for tracking configuration changes in the system history.

@example "Adding new sub-code for regional compliance tracking."

@regex .*

@format May contain any UTF-8 characters or be left empty.

Implementation

@$pb.TagNumber(2)
$core.String get userComment => $_getSZ(1);
  1. @TagNumber.new(2)
set userComment (String value)

Implementation

@$pb.TagNumber(2)
set userComment($core.String value) => $_setString(1, value);