Skip to content

Commit 5ab52a5

Browse files
authored
Merge pull request #405 from Ecwid/ECWID-138355
ECWID-138355 fix declaredValue type
2 parents e6bd894 + d982d44 commit 5ab52a5

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/kotlin/com/ecwid/apiclient/v3/dto/cart/result/CalculateOrderDetailsResult.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ data class CalculateOrderDetailsResult(
8787
val width: Double? = null,
8888
val length: Double? = null,
8989
val weight: Double? = null,
90-
val declaredValue: Int? = null
90+
val declaredValue: Double? = null
9191
)
9292

9393
data class DiscountInfo(

src/test/kotlin/com/ecwid/apiclient/v3/entity/CustomersTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ class CustomersTest : BaseEntityTest() {
119119
}
120120

121121
@Test
122+
@Disabled("Will be fixed in ECWID-75364")
122123
fun testSearchFields() {
123124
// Creating new customer group
124125
val customerGroupCreateRequest = CustomerGroupCreateRequest(

0 commit comments

Comments
 (0)