expireAt property

  1. @TagNumber.new(4)
Int64 get expireAt

(optional) a timestamp (millis since epoch) when it expires. For a temp token, by default, it's 1 Day and cannot be more than 30 days. For other tokens it never expires.

Implementation

@$pb.TagNumber(4)
$fixnum.Int64 get expireAt => $_getI64(3);
  1. @TagNumber.new(4)
set expireAt (Int64 value)

Implementation

@$pb.TagNumber(4)
set expireAt($fixnum.Int64 value) => $_setInt64(3, value);