userId property

  1. @TagNumber.new(3)
String get userId

(optional) the user id associated with the token, i.e. who will use the token. There are restrictions who can set this. In short the token issuer must be in control of the user / impersonate the user.

Implementation

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

Implementation

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