Skip to content

Commit f1deb59

Browse files
Revert "ECWID-135200 Recurring subscription orders are created without Tax ID although it's presented in the initial order - changed customerFiscalCode default value to empty string (as in ApiOrder) in FetchedOrder and UpdatedOrder"
This reverts commit e5aaa6e.
1 parent e5aaa6e commit f1deb59

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/kotlin/com/ecwid/apiclient/v3/dto/order/request/UpdatedOrder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ data class UpdatedOrder(
9595
val orderExtraFields: List<OrderExtraFields>? = null,
9696
val paymentReference: String? = null,
9797
val loyalty: Loyalty? = null,
98-
val customerFiscalCode: String? = "",
98+
val customerFiscalCode: String? = null,
9999

100100
) : ApiUpdatedDTO {
101101

src/main/kotlin/com/ecwid/apiclient/v3/dto/order/result/FetchedOrder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ data class FetchedOrder(
116116
val paymentReference: String? = null,
117117
val shippingLabelAvailableForShipment: Boolean = false,
118118
val loyalty: Loyalty? = null,
119-
val customerFiscalCode: String? = "",
119+
val customerFiscalCode: String? = null,
120120

121121
) : ApiFetchedDTO {
122122

0 commit comments

Comments
 (0)