@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.
8 lines (7 loc) • 321 B
text/typescript
/** ID of a registered webhook or error messages explaining why a webhook wasn't registered. */
export interface RegisteredWebhook {
/** The ID of the webhook. Returned if the webhook is created. */
createdWebhookId?: number;
/** Error messages specifying why the webhook creation failed. */
errors?: string[];
}