Hiyve Components - v1.0.0
    Preparing search index...

    A single comment attached to a file resource.

    interface FileComment {
        content: string;
        createdAt: string | Date;
        editedAt?: string | Date;
        id: string;
        userId: string;
        userName?: string;
    }
    Index

    Properties

    content: string

    Comment text content

    createdAt: string | Date

    When the comment was created

    editedAt?: string | Date

    When the comment was last edited (undefined if never edited)

    id: string

    Unique identifier for the comment

    userId: string

    User ID of the comment author

    userName?: string

    Display name of the author