import type { WebhookExecution } from '../schemas/WebhookExecution'; /** * A list of Harness Registries webhooks executions */ export interface ListWebhooksExecutions { /** * A list of Registries webhooks executions */ executions: WebhookExecution[]; /** * The total number of items * @format int64 * @example 1 */ itemCount?: number; /** * The total number of pages * @format int64 * @example 100 */ pageCount?: number; /** * The current page * @format int64 * @example 0 */ pageIndex?: number; /** * The number of items per page * @example 1 */ pageSize?: number; }