@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.
16 lines (14 loc) • 502 B
text/typescript
import type { Date } from './date';
import type { SelfLink } from './selfLink';
export interface SoftwareInfo {
/** Jira Service Management version. */
version?: string;
/** Jira Platform version upon which Service Desk is based. */
platformVersion?: string;
buildDate?: Date;
/** Reference of the change set included in the build. */
buildChangeSet?: string;
/** Indicates whether the instance is licensed (true) or not (false). */
isLicensedForUse?: boolean;
Links?: SelfLink;
}