interface UserReportedConcern {
    category?: ConcernCategory;
    concernText?: string;
    reviewId?: number;
    submittedDate?: Date;
    userId?: string;
}

Properties

category?: ConcernCategory

Category of the concern

concernText?: string

User comment associated with the report

reviewId?: number

Id of the review which was reported

submittedDate?: Date

Date the report was submitted

userId?: string

Id of the user who reported a review