Skip to content

Commit 2ed470e

Browse files
committed
ECWID-136424 Product reviews: review list page. Changed fields type
1 parent faed238 commit 2ed470e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/kotlin/com/ecwid/apiclient/v3/dto/productreview/request/ProductReviewMassUpdate.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ data class ProductReviewMassUpdate(
1414
) : ApiRequestDTO {
1515

1616
data class Filters(
17-
val reviewId: String? = null,
18-
val productId: String? = null,
19-
val orderId: String? = null,
17+
val reviewId: List<Long>? = null,
18+
val productId: List<Long>? = null,
19+
val orderId: List<Long>? = null,
2020
val status: ProductReviewStatus? = null,
21-
val rating: String? = null,
21+
val rating: List<Int>? = null,
2222
val createdFrom: Instant? = null,
2323
val createdTo: Instant? = null,
2424
val searchKeyword: String? = null,

0 commit comments

Comments
 (0)