updateTime property
Output only. The time at which the document was last changed.
This value is initially set to the create_time
then increases
monotonically with each change to the document. It can also be
compared to values from other documents and the read_time
of a query.
Implementation
@$pb.TagNumber(4)
$0.Timestamp get updateTime => $_getN(3);
Implementation
@$pb.TagNumber(4)
set updateTime($0.Timestamp v) {
setField(4, v);
}