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

    A single question in the Q&A session.

    interface Question {
        answer?: string;
        answeredAt?: number;
        answeredBy?: string;
        askedAt: number;
        askedBy: string;
        askedByName?: string;
        id: string;
        text: string;
        upvotes: string[];
    }
    Index

    Properties

    answer?: string

    The answer text, or undefined if not yet answered.

    answeredAt?: number

    Unix timestamp (ms) when the question was answered.

    answeredBy?: string

    User ID of the person who answered the question.

    askedAt: number

    Unix timestamp (ms) when the question was asked.

    askedBy: string

    User ID of the person who asked the question.

    askedByName?: string

    Display name of the person who asked the question.

    id: string

    Unique identifier for this question.

    text: string

    The question text.

    upvotes: string[]

    Array of user IDs that upvoted this question.