Skip to content

Commit 3a6aa15

Browse files
committed
ECWID-176440 Add useExactEmailMatch field to CustomersSearchRequest
1 parent 96f558e commit 3a6aa15

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/kotlin/com/ecwid/apiclient/v3/dto/customer/request/CustomersSearchRequest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ data class CustomersSearchRequest(
1010
val keyword: String? = null,
1111
val name: String? = null,
1212
val email: String? = null,
13+
val useExactEmailMatch: Boolean? = null,
1314
val customerGroupId: Int? = null,
1415
val usePrecalculatedOrderCount: Boolean? = null,
1516
val minOrderCount: Int? = null,

src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/CustomersSearchRequestRules.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ val customersSearchRequestNullablePropertyRules: List<NullablePropertyRule<*, *>
99
AllowNullable(CustomersSearchRequest::createdTo),
1010
AllowNullable(CustomersSearchRequest::customerGroupId),
1111
AllowNullable(CustomersSearchRequest::email),
12+
AllowNullable(CustomersSearchRequest::useExactEmailMatch),
1213
AllowNullable(CustomersSearchRequest::keyword),
1314
AllowNullable(CustomersSearchRequest::usePrecalculatedOrderCount),
1415
AllowNullable(CustomersSearchRequest::maxOrderCount),

0 commit comments

Comments
 (0)