Individual user entry result when using .user.search(). NOTE these entries are transformed from the raw API result (camelCase instead of PascalCase) in order to better match the User Details API See User.RawSearchHit for the original API schema

interface SearchHit {
    email: null | string;
    entityType: "User";
    firstname: string;
    lastname: string;
    profileImageUri: string;
    userId: string;
    username: string;
}

Properties

email: null | string
entityType: "User"
firstname: string
lastname: string
profileImageUri: string
userId: string
username: string