@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.
19 lines (17 loc) • 701 B
text/typescript
import type { FailedWebhook } from './failedWebhook';
/** A page of failed webhooks. */
export interface FailedWebhooks {
/**
* The maximum number of items on the page. If the list of values is shorter than this number, then there are no more
* pages.
*/
maxResults: number;
/**
* The URL to the next page of results. Present only if the request returned at least one result.The next page may be
* empty at the time of receiving the response, but new failed webhooks may appear in time. You can save the URL to
* the next page and query for new results periodically (for example, every hour).
*/
next?: string;
/** The list of webhooks. */
values: FailedWebhook[];
}