limit property

  1. @TagNumber.new(2)
int get limit

limit is the maximum amount of objects returned. The default is set to 100 with a maximum of 1000 in the runtime configuration. If the limit exceeds the maximum configured ZITADEL will throw an error. If no limit is present the default is taken.

Implementation

@$pb.TagNumber(2)
$core.int get limit => $_getIZ(1);
  1. @TagNumber.new(2)
set limit (int value)

Implementation

@$pb.TagNumber(2)
set limit($core.int value) => $_setUnsignedInt32(1, value);