interface Review {
    adminReply?: ReviewReply;
    id?: number;
    isDeleted?: boolean;
    isIgnored?: boolean;
    productVersion?: string;
    rating?: number;
    reCaptchaToken?: string;
    reply?: ReviewReply;
    text?: string;
    title?: string;
    updatedDate?: Date;
    userDisplayName?: string;
    userId?: string;
}

Properties

adminReply?: ReviewReply

Admin Reply, if any, for this review

id?: number

Unique identifier of a review item

isDeleted?: boolean

Flag for soft deletion

isIgnored?: boolean

Flag for Ignoring Review from average rating calculation

productVersion?: string

Version of the product for which review was submitted

rating?: number

Rating provided by the user

reCaptchaToken?: string
reply?: ReviewReply

Reply, if any, for this review

text?: string

Text description of the review

title?: string

Title of the review

updatedDate?: Date

Time when the review was edited/updated

userDisplayName?: string

Name of the user

userId?: string

Id of the user who submitted the review