timeUnixNano property

  1. @TagNumber.new(2)
Int64 get timeUnixNano

time_unix_nano is the exact time when this exemplar was recorded

Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January 1970.

Implementation

@$pb.TagNumber(2)
$fixnum.Int64 get timeUnixNano => $_getI64(0);
  1. @TagNumber.new(2)
set timeUnixNano (Int64 v)

Implementation

@$pb.TagNumber(2)
set timeUnixNano($fixnum.Int64 v) {
  $_setInt64(0, v);
}