Skip to main content

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
NameType
due| { date: string; datetime?: string | null; isRecurring: boolean; lang?: string | null; string: string; timezone?: string | null; } | null
idstring
isDeletedboolean
isUrgentboolean
itemIdstring
minuteOffsetnumber | null
notifyUidstring
projectId?string
type"relative" | "absolute" | "location"