import type { WebhookDeliveryRead } from './webhook-delivery-read';
export interface PaginatedWebhookDeliveryReadList {
    'count': number;
    'next'?: string | null;
    'previous'?: string | null;
    'results': Array<WebhookDeliveryRead>;
}
