id property
A player identifier, session identifier, browser identifier or whatever other kind of identifier you use for this scoreboard. The full unsigned 64 bit range is allowed here, between 0 and 2^63-1 inclusive. An id can only appear in a leaderboard one time. You can't have 2 scores for 1 player, unless that player has 2 ids!
Implementation
@$pb.TagNumber(1)
$core.int get id => $_getIZ(0);
Implementation
@$pb.TagNumber(1)
set id($core.int v) {
$_setUnsignedInt32(0, v);
}