Section
type Section = {
addedAt: string;
archivedAt: null | string;
id: string;
isArchived: boolean;
isCollapsed: boolean;
isDeleted: boolean;
name: string;
projectId: string;
sectionOrder: number;
updatedAt: string;
url: string;
userId: string;
};
Represents a section in a Todoist project.
Type Declaration
Name | Type |
---|---|
addedAt | string |
archivedAt | null | string |
id | string |
isArchived | boolean |
isCollapsed | boolean |
isDeleted | boolean |
name | string |
projectId | string |
sectionOrder | number |
updatedAt | string |
url | string |
userId | string |