id property

  1. @TagNumber(1)
String get id

A globally unique ID string for this user. In the case of Signal that would mean +16504442323, for the default macaddr derived id it would be !<8 hexidecimal bytes>. Note: app developers are encouraged to also use the following standard node IDs "^all" (for broadcast), "^local" (for the locally connected node)

Implementation

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

Implementation

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