range property
- @TagNumber(12)
range is a duration string in minutes, hours, or days (e.g. "10m", "10h", "10d")
that is resolved against whichever of start and end is present:
end only: end - range, end
start only: start, start + range
neither: now - range, now
Specifying range together with both start and end is an error.
Implementation
@$pb.TagNumber(12)
$core.String get range => $_getSZ(11);
- @TagNumber(12)
Implementation
@$pb.TagNumber(12)
set range($core.String v) { $_setString(11, v); }