@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
22 lines (20 loc) • 796 B
text/typescript
import type { UserLink } from './userLink';
export interface User {
/**
* The accountId of the user, which uniquely identifies the user across all Atlassian products. For example,
* _5b10ac8d82e05b22cc7d4ef5_.
*/
accountId?: string;
/** Customer's email address. Depending on the customer’s privacy settings, this may be returned as null. */
emailAddress?: string;
/**
* Customer's name for display in a UI. Depending on the customer’s privacy settings, this may return an alternative
* value.
*/
displayName?: string;
/** Indicates if the customer is active (true) or inactive (false) */
active?: boolean;
/** Customer time zone. Depending on the customer’s privacy settings, this may be returned as null. */
timeZone?: string;
Links?: UserLink;
}