Modrinth API Types - v1.1.0
    Preparing search index...

    Type Alias APIThread

    type APIThread = {
        id: string;
        members: APIUser[];
        messages: APIThreadMessage[];
        project_id: string | null;
        report_id: string | null;
        type: ThreadMessageType;
    }
    Index

    Properties

    id: string

    The ID of the thread.

    members: APIUser[]

    List of members part of this thread.

    messages: APIThreadMessage[]

    List of messages in this thread.

    project_id: string | null

    The ID of the associated project if a project thread.

    report_id: string | null

    The ID of the associated report if a report thread.

    The type of thread.