Skip to content

Commit

Permalink
ECWID-138287 Product Reviews: separate list of options from product name
Browse files Browse the repository at this point in the history
  • Loading branch information
kitty-ecwid committed Apr 16, 2024
1 parent 7ca13e8 commit d0a6cca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ data class FetchedProductReview(
val id: Long? = null,
val productId: Long? = null,
val productName: String? = null,
val productOptions: List<String>? = null,
val customerId: Long? = null,
val orderId: Long? = null,
val orderNumber: String? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ val fetchedProductReviewNullablePropertyRules: List<NullablePropertyRule<*, *>>
AllowNullable(FetchedProductReview::orderNumber),
AllowNullable(FetchedProductReview::productId),
AllowNullable(FetchedProductReview::productName),
AllowNullable(FetchedProductReview::productOptions),
AllowNullable(FetchedProductReview::rating),
AllowNullable(FetchedProductReview::review),
AllowNullable(FetchedProductReview::reviewerInfo),
Expand Down

0 comments on commit d0a6cca

Please sign in to comment.