GetProjectCommentsArgs
type GetProjectCommentsArgs = {
cursor?: string | null;
limit?: number;
projectId: string;
taskId?: never;
};
Arguments for retrieving project 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
projectId: string;
taskId?
optional taskId: never;