CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface FeatureRequestComment

    Comment entry in a feature request discussion thread.

    const comment: FeatureRequestComment = {
    id: 'cmt_001',
    featureRequestId: 'fr_101',
    authorName: 'DevTeam',
    body: 'We have started working on this for the next minor release!',
    createdAt: '2026-08-20T09:00:00.000Z',
    };
    interface FeatureRequestComment {
        authorAvatarUrl?: string | null;
        authorClerkId?: string | null;
        authorEmail?: string | null;
        authorName?: string | null;
        body: string;
        createdAt: string;
        featureRequestId: string;
        id: string;
        isHidden?: boolean;
        parentId?: string | null;
        replyToAuthorName?: string | null;
        replyToClerkId?: string | null;
    }
    Index
    authorAvatarUrl?: string | null

    Avatar URL of the author.

    authorClerkId?: string | null

    Clerk user ID of the author if authenticated.

    authorEmail?: string | null

    Email address of the author if provided.

    authorName?: string | null

    Display name of the author.

    body: string

    Comment body content (supports markdown).

    createdAt: string

    ISO 8601 creation timestamp.

    featureRequestId: string

    Parent feature request ID.

    id: string

    Unique comment ID.

    isHidden?: boolean

    Whether this comment has been hidden by moderation.

    parentId?: string | null

    ID of the parent comment if this is a nested reply.

    replyToAuthorName?: string | null

    Display name of the user being replied to.

    replyToClerkId?: string | null

    Clerk user ID of the user being replied to.