Adding Item to SharePoint Person Column

Hello. I am using “UiPathTeam.SharePoint.Activities” package to connect SharePoint.

I tried to add a person to person type column as explained in package guide, but I got error like here:

I also used this for dictionary part:

New Dictionary(Of String, Object) From {
{"Ad_Soyad", New Microsoft.SharePoint.Client.UserValue() With { .LookupId = NewUserID}}
}

But I got same error: (Error says that Microsoft.SharePoint.Client.UserValue is not defined.)
image

How can I solve this problem?

New Dictionary(of String, Object) from {{ “ColumnNameInList”,CType(NewUserID,Microsoft.SharePoint.Client.FieldUserValue).LookupValue}}

Try this