interface ReviewReply {
    id?: number;
    isDeleted?: boolean;
    productVersion?: string;
    replyText?: string;
    reviewId?: number;
    title?: string;
    updatedDate?: Date;
    userId?: string;
}

Properties

id?: number

Id of the reply

isDeleted?: boolean

Flag for soft deletion

productVersion?: string

Version of the product when the reply was submitted or updated

replyText?: string

Content of the reply

reviewId?: number

Id of the review, to which this reply belongs

title?: string

Title of the reply

updatedDate?: Date

Date the reply was submitted or updated

userId?: string

Id of the user who left the reply