@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.
12 lines (11 loc) • 428 B
text/typescript
/** Details about a failed webhook. */
export interface FailedWebhook {
/** The webhook body. */
body?: string;
/** The time the webhook was added to the list of failed webhooks (that is, the time of the last failed retry). */
failureTime: number;
/** The webhook ID, as sent in the `X-Atlassian-Webhook-Identifier` header with the webhook. */
id: string;
/** The original webhook destination. */
url: string;
}