UNPKG

@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.

10 lines (8 loc) 226 B
import type { SelfLink } from './selfLink'; export interface Organization { /** A unique system generated ID for the organization. */ id?: string; /** Name of the organization. */ name?: string; Links?: SelfLink; }