readTime property

  1. @TagNumber(5)
Timestamp readTime

Reads the version of the document at the given time.

This must be a microsecond precision timestamp within the past one hour, or if Point-in-Time Recovery is enabled, can additionally be a whole minute timestamp within the past 7 days.

Implementation

@$pb.TagNumber(5)
$4.Timestamp get readTime => $_getN(3);
  1. @TagNumber(5)
void readTime=(Timestamp v)

Implementation

@$pb.TagNumber(5)
set readTime($4.Timestamp v) {
  setField(5, v);
}