readTime property

  1. @TagNumber(4)
Timestamp readTime

The time at which the document was read. This may be monotically increasing, in this case the previous documents in the result stream are guaranteed not to have changed between their read_time and this one.

Implementation

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

Implementation

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