waitSeconds property

  1. @TagNumber.new(6)
double get waitSeconds

WAIT: fractional seconds. Clamped by commons to 0, 100 because the value comes from untrusted model output; an unbounded parse would wedge the agent loop. 100s is a RunAnywhere-chosen ceiling, not inherited from any vendor API.

Implementation

@$pb.TagNumber(6)
$core.double get waitSeconds => $_getN(5);
  1. @TagNumber.new(6)
set waitSeconds (double value)

Implementation

@$pb.TagNumber(6)
set waitSeconds($core.double value) => $_setDouble(5, value);