strictMaxEnabled property

  1. @TagNumber(4)
bool strictMaxEnabled

Optional. Whether each value needs to be strictly lesser than ('<') the maximum, or if equality is allowed.

Only relevant if a max_value has been defined. Default = false.

Implementation

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

Implementation

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