@jsfkit/types
    Preparing search index...

    Type Alias Person

    An author of a threaded comment, or a person mentioned in a threaded comment.

    type Person = {
        displayName: string;
        id: string;
        providerId?: string;
        userId?: string;
    }
    Index

    Properties

    displayName: string

    The person's name as it should be shown to other users.

    id: string

    A unique id for the person.

    Excel always uses a UUID in the format {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}, but JSF makes no strict requirement.

    providerId?: string

    Specifies where the person's information came from. Excel supports the following values:

    • None: no specific provider; Person.userId is expected to be the person's name.
    • AD: Active Directory; Person.userId will be Active Directory id.
    • Windows Live: Microsoft account; Person.userId will be a 64-bit signed decimal.
    • PeoplePicker: SharePoint People Picker; Person.userId will be an email address.
    userId?: string

    Optional provider-issued user identifier that varies in format depending on the provider. See Person.providerId for details on possible values.