export type CommentCreate = { /** * The universal, unique ID of the parent comment, if any. */ parentId?: string; /** * The universal, unique ID of the task that the comment is associated with. */ taskId: string; /** * The full content of the comment, which can include markdown formatting. */ text: string; };