updateTime property

  1. @TagNumber(1)
Timestamp updateTime

The last update time of the document after applying the write. Not set after a delete.

If the write did not actually change the document, this will be the previous update_time.

Implementation

@$pb.TagNumber(1)
$2.Timestamp get updateTime => $_getN(0);
  1. @TagNumber(1)
void updateTime=(Timestamp v)

Implementation

@$pb.TagNumber(1)
set updateTime($2.Timestamp v) {
  setField(1, v);
}