validForSeconds property

  1. @TagNumber(2)
int validForSeconds

How many seconds the token was valid for when issued. Will vary slightly from reality upon receipt, as time has passed since the token was minted. You might expect to see this true to within 10 seconds of client-side timekeeping but as is ever the case, there are no guarantees with public network timing.

Implementation

@$pb.TagNumber(2)
$core.int get validForSeconds => $_getIZ(1);
  1. @TagNumber(2)
void validForSeconds=(int v)

Implementation

@$pb.TagNumber(2)
set validForSeconds($core.int v) {
  $_setUnsignedInt32(1, v);
}