interface User {
    Links?: UserLink;
    accountId?: string;
    active?: boolean;
    displayName?: string;
    emailAddress?: string;
    timeZone?: string;
}

Properties

Links?: UserLink
accountId?: string

The accountId of the user, which uniquely identifies the user across all Atlassian products. For example, 5b10ac8d82e05b22cc7d4ef5.

active?: boolean

Indicates if the customer is active (true) or inactive (false)

displayName?: string

Customer's name for display in a UI. Depending on the customer’s privacy settings, this may return an alternative value.

emailAddress?: string

Customer's email address. Depending on the customer’s privacy settings, this may be returned as null.

timeZone?: string

Customer time zone. Depending on the customer’s privacy settings, this may be returned as null.