@archastro/sdk
    Preparing search index...

    Interface TaskComment

    A comment posted on a task by a user or an agent, including resolved author information.

    interface TaskComment {
        author_actor?: Actor;
        author_agent?: string;
        author_user?: string;
        body: string;
        created_at?: string;
        id: string;
        org?: string;
        sandbox?: string;
        task?: string;
        team?: string;
        updated_at?: string;
    }
    Index

    Properties

    author_actor?: Actor

    Resolved author details including id, name, alias, and profile_picture. null if no author is set or the author cannot be resolved (e.g. authoring agent was deleted).

    author_agent?: string

    ID of the agent that posted this comment (agi_...). null if the author is a human user, or if the authoring agent was later deleted.

    author_user?: string

    ID of the user who posted this comment (usr_...). null if the author is an agent, or if author provenance was cleared after the authoring agent was deleted.

    body: string

    Plain-text body of the comment.

    created_at?: string

    When this comment was posted (ISO 8601).

    id: string

    Comment ID (tcmt_...).

    org?: string

    ID of the organization that owns this comment (org_...).

    sandbox?: string

    Sandbox ID this comment is scoped to. null for comments outside a sandbox environment.

    task?: string

    ID of the task this comment belongs to (tsk_...).

    team?: string

    ID of the team the task belongs to (tem_...). null if not scoped to a team.

    updated_at?: string

    When this comment was last edited (ISO 8601).