WebhookSection
type WebhookSection = {
addedAt: Date;
archivedAt: Date | null;
description: string | null;
id: string;
isArchived: boolean;
isCollapsed: boolean;
isDeleted: boolean;
name: string;
projectId: string;
sectionOrder: number;
updatedAt: Date | null;
url: string;
userId: string;
};
A section delivered in a webhook payload.