UsersServiceSearchAllReq constructor
UsersServiceSearchAllReq({
- BOOL_FILTER? isActive,
- Int64? count,
- Int64? offset,
- SORT_ORDER? sortOrder,
- USER_SORT_KEY? sortKey,
- String? entityUuid,
- USER_TYPE? userType,
- STANDARD_LIFECYCLE_STATUS? status,
- String? searchKey,
- Int64? vendorId,
- Int64? clientId,
Implementation
factory UsersServiceSearchAllReq({
$1.BOOL_FILTER? isActive,
$fixnum.Int64? count,
$fixnum.Int64? offset,
$1.SORT_ORDER? sortOrder,
USER_SORT_KEY? sortKey,
$core.String? entityUuid,
USER_TYPE? userType,
$1.STANDARD_LIFECYCLE_STATUS? status,
$core.String? searchKey,
$fixnum.Int64? vendorId,
$fixnum.Int64? clientId,
}) {
final result = create();
if (isActive != null) result.isActive = isActive;
if (count != null) result.count = count;
if (offset != null) result.offset = offset;
if (sortOrder != null) result.sortOrder = sortOrder;
if (sortKey != null) result.sortKey = sortKey;
if (entityUuid != null) result.entityUuid = entityUuid;
if (userType != null) result.userType = userType;
if (status != null) result.status = status;
if (searchKey != null) result.searchKey = searchKey;
if (vendorId != null) result.vendorId = vendorId;
if (clientId != null) result.clientId = clientId;
return result;
}