Type Alias CalendarNotificationDetails

CalendarNotificationDetails: {
    _id: string;
    altType: "calendar";
    calendarId: string;
    receiverType: CalendarNotificationReceiverType;
    receiverEmailIds: string[];
    channel: CalendarNotificationChannel;
    notificationType: CalendarNotificationType;
    isActive: boolean;
    templateId: string;
    body: string;
    subject: string;
    afterTime: CalendarNotificationTime[];
    beforeTime: CalendarNotificationTime[];
    selectedUsers: string[];
    deleted: boolean;
}

Type declaration