src/app/core/models/review.ts
Properties |
| description |
description:
|
Type : string
|
|
Defined in src/app/core/models/review.ts:5
|
| id |
id:
|
Type : string
|
|
Defined in src/app/core/models/review.ts:4
|
| locale |
locale:
|
Type : string
|
|
Defined in src/app/core/models/review.ts:6
|
| name |
name:
|
Type : string
|
|
Defined in src/app/core/models/review.ts:8
|
| rating_option_vote |
rating_option_vote:
|
Type : RatingOptionVote
|
|
Defined in src/app/core/models/review.ts:9
|
| title |
title:
|
Type : string
|
|
Defined in src/app/core/models/review.ts:7
|
| updated_at |
updated_at:
|
Type : string
|
|
Defined in src/app/core/models/review.ts:10
|
import { RatingOptionVote } from './rating_option_vote';
export class Review {
id: string;
description: string;
locale: string;
title: string;
name: string;
rating_option_vote: RatingOptionVote
updated_at: string;
}