Interface IPersonProperties
A metadata for a person
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public interface IPersonProperties
A metadata for a person
public interface IPersonProperties
Person's account name in a form of "i:0#.f|membership|admin@m365x790252.onmicrosoft.com"
string AccountName { get; set; }
| string |
Direct reports for the current user
List<string> DirectReports { get; set; }
| List<string> |
Extended managers for the current user
List<string> ExtendedManagers { get; set; }
| List<string> |
Extended reports for the current user
List<string> ExtendedReports { get; set; }
| List<string> |
Whether the current user is followed or not
bool IsFollowed { get; set; }
| bool |
User profile properties key-value collection
Dictionary<string, object> UserProfileProperties { get; set; }
| Dictionary<string, object> |