diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/order/request/UpdatedOrder.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/order/request/UpdatedOrder.kt index 3953c5cc..9560f0d8 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/order/request/UpdatedOrder.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/order/request/UpdatedOrder.kt @@ -95,7 +95,7 @@ data class UpdatedOrder( val orderExtraFields: List? = null, val paymentReference: String? = null, val loyalty: Loyalty? = null, - val customerFiscalCode: String? = null, + val customerFiscalCode: String? = "", ) : ApiUpdatedDTO { diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/order/result/FetchedOrder.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/order/result/FetchedOrder.kt index 435060e2..2deab79f 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/order/result/FetchedOrder.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/order/result/FetchedOrder.kt @@ -116,7 +116,7 @@ data class FetchedOrder( val paymentReference: String? = null, val shippingLabelAvailableForShipment: Boolean = false, val loyalty: Loyalty? = null, - val customerFiscalCode: String? = null, + val customerFiscalCode: String? = "", ) : ApiFetchedDTO {