GetTaskCommentsArgs
type GetTaskCommentsArgs = {
cursor?: string | null;
limit?: number;
projectId?: never;
taskId: string;
};
Arguments for retrieving task comments.
See
https://todoist.com/api/v1/docs#tag/Comments/operation/get_comments_api_v1_comments_get
Properties
cursor?
optional cursor: string | null;
limit?
optional limit: number;
projectId?
optional projectId: never;
taskId
taskId: string;