Skip to content

Commit 35d4aeb

Browse files
committed
ECWID-163221: allow nullable values
1 parent 558e338 commit 35d4aeb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ val fetchedOrderNullablePropertyRules: List<NullablePropertyRule<*, *>> = listOf
9999
IgnoreNullable(FetchedOrder.OrderItem::externalReferenceId),
100100
AllowNullable(FetchedOrder.OrderItem::isPreorder),
101101
AllowNullable(FetchedOrder.OrderItem::attributes),
102-
IgnoreNullable(FetchedOrder.OrderItem::taxClassCode),
102+
AllowNullable(FetchedOrder.OrderItem::taxClassCode),
103103
IgnoreNullable(FetchedOrder.OrderItemDiscounts::discountInfo),
104104
IgnoreNullable(FetchedOrder.OrderItemDiscounts::total),
105105
AllowNullable(FetchedOrder.OrderItemOptionFile::id),

0 commit comments

Comments
 (0)