interface UserDto {
    _links?: UserLinkDto;
    accountId?: string;
    active?: boolean;
    displayName?: string;
    emailAddress?: string;
    key?: string;
    name?: string;
    timeZone?: string;
}

Properties

_links?: UserLinkDto

URLs for the customer record and related items.

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.

key?: string

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

name?: string

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

timeZone?: string

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