ClientUsersSearchRequest constructor

ClientUsersSearchRequest({
  1. BOOL_FILTER? isActive,
  2. Int64? count,
  3. Int64? offset,
  4. String? entityUuid,
  5. CLIENT_USER_STATUS? status,
  6. Int64? clientId,
  7. Int64? userId,
  8. Int64? associateId,
  9. 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;
}