Person

Interface

interface IPerson {
  account: string;
  loginName: string;
  picture: string;
  name: string;
  email: string;
  uniqueId: string;
  entityType: SPPrincipalType;
  pageDetailUrl?: string;
  department?: string;
}
 
enum SPPrincipalType {
  None = "None",
  User = "User",
  DistributionList = "DistributionList",
  SecurityGroup = "SecurityGroup",
  SecGroup = "SecGroup",
  SharePointGroup = "SharePointGroup",
  All = "All",
  GUEST_USER = "GUEST_USER",
}