NotesServiceUpdateRequest constructor
NotesServiceUpdateRequest({})
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;
}