ClientUsersSearchRequest constructor
ClientUsersSearchRequest({
- BOOL_FILTER? isActive,
- Int64? count,
- Int64? offset,
- String? entityUuid,
- CLIENT_USER_STATUS? status,
- Int64? clientId,
- Int64? userId,
- Int64? associateId,
- String? searchKey,
Implementation
factory ClientUsersSearchRequest({
$1.BOOL_FILTER? isActive,
$fixnum.Int64? count,
$fixnum.Int64? offset,
$core.String? entityUuid,
CLIENT_USER_STATUS? status,
$fixnum.Int64? clientId,
$fixnum.Int64? userId,
$fixnum.Int64? associateId,
$core.String? searchKey,
}) {
final result = create();
if (isActive != null) result.isActive = isActive;
if (count != null) result.count = count;
if (offset != null) result.offset = offset;
if (entityUuid != null) result.entityUuid = entityUuid;
if (status != null) result.status = status;
if (clientId != null) result.clientId = clientId;
if (userId != null) result.userId = userId;
if (associateId != null) result.associateId = associateId;
if (searchKey != null) result.searchKey = searchKey;
return result;
}