NotesServiceSearchAllReq constructor
NotesServiceSearchAllReq({
- BOOL_FILTER? isActive,
- Int64? count,
- Int64? offset,
- SORT_ORDER? sortOrder,
- NOTE_SORT_KEY? sortKey,
- String? entityUuid,
- NOTE_LIFECYCLE? status,
- String? searchKey,
- Int64? projectId,
- Int64? employeeId,
- Int64? activityId,
- Int64? activityStatusId,
Implementation
factory NotesServiceSearchAllReq({
$1.BOOL_FILTER? isActive,
$fixnum.Int64? count,
$fixnum.Int64? offset,
$1.SORT_ORDER? sortOrder,
NOTE_SORT_KEY? sortKey,
$core.String? entityUuid,
NOTE_LIFECYCLE? status,
$core.String? searchKey,
$fixnum.Int64? projectId,
$fixnum.Int64? employeeId,
$fixnum.Int64? activityId,
$fixnum.Int64? activityStatusId,
}) {
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 (status != null) result.status = status;
if (searchKey != null) result.searchKey = searchKey;
if (projectId != null) result.projectId = projectId;
if (employeeId != null) result.employeeId = employeeId;
if (activityId != null) result.activityId = activityId;
if (activityStatusId != null) result.activityStatusId = activityStatusId;
return result;
}