userComment property

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

@optional

@description Audit log comment or justification for creating this record. This is stored in the record's history for compliance purposes.

@example "This is a comment for audit purposes."

@regex .*

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

Implementation

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

Implementation

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