interimResults property

  1. @TagNumber(2)
bool get interimResults

Whether or not to stream interim results to the client. If set to true, interim results will be streamed to the client. Otherwise, only the final response will be streamed back.

Implementation

@$pb.TagNumber(2)
$core.bool get interimResults => $_getBF(1);
  1. @TagNumber(2)
set interimResults (bool v)

Implementation

@$pb.TagNumber(2)
set interimResults($core.bool v) {
  $_setBool(1, v);
}