mineos-market-client
    Preparing search index...

    Type Alias Review

    Review content with author information, rating, and vote counts

    type Review = {
        id: number;
        userName: string;
        rating: number;
        comment: string;
        timestamp: number;
        votes?: ReviewVotes;
    }
    Index

    Properties

    id: number

    Unique review identifier

    userName: string

    Username of the review author

    rating: number

    Rating score given in the review

    comment: string

    Text content of the review

    timestamp: number

    Timestamp when the review was posted

    votes?: ReviewVotes

    Vote counts for this review