NotesServiceUpdateRequest constructor

NotesServiceUpdateRequest({
  1. String? userComment,
  2. Int64? id,
  3. bool? notifyUsers,
  4. Int64? vaultFolderId,
  5. Int64? projectId,
  6. String? title,
  7. String? description,
  8. Int64? activityId,
  9. Int64? activityStatusId,
})

Implementation

factory NotesServiceUpdateRequest({
  $core.String? userComment,
  $fixnum.Int64? id,
  $core.bool? notifyUsers,
  $fixnum.Int64? vaultFolderId,
  $fixnum.Int64? projectId,
  $core.String? title,
  $core.String? description,
  $fixnum.Int64? activityId,
  $fixnum.Int64? activityStatusId,
}) {
  final result = create();
  if (userComment != null) result.userComment = userComment;
  if (id != null) result.id = id;
  if (notifyUsers != null) result.notifyUsers = notifyUsers;
  if (vaultFolderId != null) result.vaultFolderId = vaultFolderId;
  if (projectId != null) result.projectId = projectId;
  if (title != null) result.title = title;
  if (description != null) result.description = description;
  if (activityId != null) result.activityId = activityId;
  if (activityStatusId != null) result.activityStatusId = activityStatusId;
  return result;
}