Torn API Client
    Preparing search index...

    Type Alias ForumPost

    type ForumPost = {
        author: ForumThreadAuthor;
        content: string;
        created_time: number;
        dislikes: number;
        edited_by: UserId | unknown;
        has_quote: boolean;
        id: ForumPostId;
        is_edited: boolean;
        is_legacy: boolean;
        is_pinned: boolean;
        is_topic: boolean;
        likes: number;
        quoted_post_id: number | unknown;
        thread_id: ForumThreadId;
    }
    Index

    Properties

    content: string
    created_time: number
    dislikes: number
    edited_by: UserId | unknown
    has_quote: boolean
    is_edited: boolean
    is_legacy: boolean
    is_pinned: boolean
    is_topic: boolean
    likes: number

    quoted_post_id

    quoted_post_id: number | unknown
    thread_id: ForumThreadId