WebhookFiredReminder
type WebhookFiredReminder = {
[key: string]: unknown;
due: | {
date: string;
datetime?: string | null;
isRecurring: boolean;
lang?: string | null;
string: string;
timezone?: string | null;
}
| null;
id: string;
isDeleted: boolean;
isUrgent: boolean;
itemId: string;
minuteOffset: number | null;
notifyUid: string;
projectId?: string;
type: "relative" | "absolute" | "location";
};
A fired-reminder notification delivered in a webhook payload.
Type Declaration
Index Signature
[key: string]: unknown