Skip to main content

height-app-api > ListObject

ListObject type

Tasks belong to one list. To create tasks, it's necessary to know in which list you want to create them.

Signature:

export type ListObject = {
id: string;
model: 'list';
type: 'list' | 'smartlist' | 'user' | 'inbox' | 'search';
key: string;
description: string;
url: string;
appearance: {
iconUrl: string;
hue?: number | null;
};
};