interface BulkUserLookup {
    _expandable: {
        details?: string;
        operations?: string;
        personalSpace?: string;
    };
    _links: GenericLinks;
    accountId: string;
    accountType: string;
    details?: Models.UserDetails;
    displayName: string;
    email: string;
    operations?: Models.OperationCheckResult[];
    personalSpace?: Models.Space;
    profilePicture: Models.Icon;
    publicName: string;
    type: string;
    userKey?: string;
    username?: string;
}

Properties

_expandable: {
    details?: string;
    operations?: string;
    personalSpace?: string;
}

Type declaration

  • Optional details?: string
  • Optional operations?: string
  • Optional personalSpace?: string
_links: GenericLinks
accountId: string

The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, 384093:32b4d9w0-f6a5-3535-11a3-9c8c88d10192.

accountType: string

The account type of the user, may return empty string if unavailable.

displayName: string

The display name of the user. Depending on the user's privacy setting, this may be the same as publicName.

email: string

The email address of the user. Depending on the user's privacy setting, this may return an empty string.

personalSpace?: Models.Space
profilePicture: Models.Icon
publicName: string

The public name or nickname of the user. Will always contain a value.

type: string
userKey?: string

This property is no longer available and will be removed from the documentation soon. Use accountId instead. See the deprecation notice for details.

username?: string

This property is no longer available and will be removed from the documentation soon. Use accountId instead. See the deprecation notice for details.

Generated using TypeDoc v0.25.12