frameEndTime property

  1. @TagNumber.new(8)
Timestamp get frameEndTime

Output only. The point in time when the time frame ends. Notice that the time frame is counted backwards. For instance if the "frame_end_time" value is 2021/01/20 and the time frame is WEEK then the report covers the week between 2021/01/20 and 2021/01/14.

Implementation

@$pb.TagNumber(8)
$2.Timestamp get frameEndTime => $_getN(7);
  1. @TagNumber.new(8)
set frameEndTime (Timestamp v)

Implementation

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