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

    Interface UserProfileComment

    Comment excerpt displayed in the public profile activity feed.

    const comment: UserProfileComment = {
    id: 'cmt_55',
    body: 'Agreed, native keyboard shortcuts are essential.',
    createdAt: '2026-08-10T14:00:00.000Z',
    featureRequestId: 'fr_101',
    featureRequestTitle: 'Custom Keybindings',
    appId: 'app_1',
    appName: 'Focus Timer Pro',
    };
    interface UserProfileComment {
        appId: string;
        appName: string;
        body: string;
        createdAt: string;
        featureRequestId: string;
        featureRequestTitle: string;
        id: string;
    }
    Index
    appId: string

    ID of the application owning the feature request.

    appName: string

    Name of the application owning the feature request.

    body: string

    Comment text snippet.

    createdAt: string

    ISO 8601 timestamp when the comment was authored.

    featureRequestId: string

    ID of the feature request where the comment was posted.

    featureRequestTitle: string

    Title of the feature request where the comment was posted.

    id: string

    Unique comment ID.