referenceId property
@mandatory
@description A unique external reference ID for the record. Must be alphanumeric (spaces allowed). Used for cross-referencing with external systems.
@example "ABS-2023-001"
@regex "0-9A-Za-z +$"
@format Alphanumeric characters and spaces only. No special symbols or punctuation allowed.
Implementation
@$pb.TagNumber(10)
$core.String get referenceId => $_getSZ(3);
Implementation
@$pb.TagNumber(10)
set referenceId($core.String value) => $_setString(3, value);