interface Task {
    additionMethod?: TaskAdditionMethod;
    assignedBy?: string;
    assignedToEmail?: null | string;
    assignedToName?: null | string;
    createdAt: string;
    description?: string;
    dueDateTime?: string;
    id: string;
    reminderDateTime?: string;
    source?: string;
    status:
        | "pending"
        | "completed"
        | "detected"
        | "added to notion"
        | "added to linear"
        | "added to google calendar";
    title: string;
}

Properties

additionMethod?: TaskAdditionMethod
assignedBy?: string
assignedToEmail?: null | string
assignedToName?: null | string
createdAt: string
description?: string
dueDateTime?: string
id: string
reminderDateTime?: string
source?: string
status:
    | "pending"
    | "completed"
    | "detected"
    | "added to notion"
    | "added to linear"
    | "added to google calendar"
title: string