We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faed238 commit 2ed470eCopy full SHA for 2ed470e
1 file changed
src/main/kotlin/com/ecwid/apiclient/v3/dto/productreview/request/ProductReviewMassUpdate.kt
@@ -14,11 +14,11 @@ data class ProductReviewMassUpdate(
14
) : ApiRequestDTO {
15
16
data class Filters(
17
- val reviewId: String? = null,
18
- val productId: String? = null,
19
- val orderId: String? = null,
+ val reviewId: List<Long>? = null,
+ val productId: List<Long>? = null,
+ val orderId: List<Long>? = null,
20
val status: ProductReviewStatus? = null,
21
- val rating: String? = null,
+ val rating: List<Int>? = null,
22
val createdFrom: Instant? = null,
23
val createdTo: Instant? = null,
24
val searchKeyword: String? = null,
0 commit comments