Review
Object contains review details like : rating, alias, headline, comment Review
export interface Review {
'alias'?: string;
'comment'?: string;
'date'?: string;
'headline'?: string;
'id'?: string;
'principal'?: User;
'rating'?: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
alias | Optional | string | Alias name for the review {string} Review |
comment | Optional | string | Review comment {string} Review |
date | Optional | string | Date of the review {string} Review |
headline | Optional | string | Review headline {string} Review |
id | Optional | string | Identifier of review {string} Review |
principal | Optional | User | {User} Review |
rating | Optional | number | Review rating value {number} Review |