@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.
13 lines (12 loc) • 543 B
text/typescript
/** A rule configuration. */
export interface RuleConfiguration {
/** EXPERIMENTAL: Whether the rule is disabled. */
disabled?: boolean;
/**
* EXPERIMENTAL: A tag used to filter rules in [Get workflow transition rule
* configurations](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-workflow-transition-rules/#api-rest-api-2-workflow-rule-config-get).
*/
tag?: string;
/** Configuration of the rule, as it is stored by the Connect or the Forge app on the rule configuration page. */
value: string;
}