platform-bible-react
    Preparing search index...

    Type Alias AddCommentToThreadOptions

    Options for adding a comment to a thread

    type AddCommentToThreadOptions = {
        assignedUser?: string;
        contents?: string;
        status?: CommentStatus;
        threadId: string;
    }
    Index

    Properties

    assignedUser?: string

    User to assign to the thread. Use "" for unassigned, "Team" for team assignment.

    contents?: string

    The content of the comment (optional - can be omitted when only changing status or assignment)

    status?: CommentStatus

    Status to set on the thread ('Resolved' or 'Todo')

    threadId: string

    The ID of the thread to add the comment to