ProductReviewResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | Long | Unique identifier for the review. | [default to null] |
| user_id | Long | User ID who created the review. | [default to null] |
| order_id | Long | Order ID associated with the review. | [default to null] |
| product_id | Long | Product ID being reviewed. | [default to null] |
| review | String | Review text content. | [default to null] |
| rating | Integer | Rating value between 1 and 5. | [default to null] |
| created_at | Date | Timestamp when the review was created. | [default to null] |
| updated_at | Date | Timestamp when the review was last updated. | [default to null] |
| user | ReviewUserInfo | Optional user information of the reviewer. | [optional] [default to null] |