allowMissing property

  1. @TagNumber(4)
bool allowMissing

If set to true, and the PhraseSet is not found, the request will succeed and be a no-op (no Operation is recorded in this case).

Implementation

@$pb.TagNumber(4)
$core.bool get allowMissing => $_getBF(3);
  1. @TagNumber(4)
void allowMissing=(bool v)

Implementation

@$pb.TagNumber(4)
set allowMissing($core.bool v) {
  $_setBool(3, v);
}