interface ReviewResponse {
    comment: string;
    createdDate: Date;
    rating: AllowedRating;
    tripName: string;
    user: Pick<
        SavedUser,
        "firstName"
        | "lastName"
        | "profilePictureUrl"
        | "group",
    >;
}

Properties

comment: string
createdDate: Date
tripName: string
user: Pick<SavedUser, "firstName" | "lastName" | "profilePictureUrl" | "group">