File tree Expand file tree Collapse file tree
src/main/kotlin/com/ecwid/apiclient/v3/dto/order Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -252,6 +252,12 @@ data class UpdatedOrder(
252252 val includeInPrice : Boolean? = null
253253 ) : BaseOrderTax
254254
255+ data class HandlingFeeTax (
256+ override val name : String? = null ,
257+ override val value : Double? = null ,
258+ override val total : Double? = null
259+ ) : BaseOrderTax
260+
255261 data class ProductDimensions (
256262 val length : Double? = null ,
257263 val width : Double? = null ,
@@ -288,7 +294,7 @@ data class UpdatedOrder(
288294 val name : String? = null ,
289295 val value : Double? = null ,
290296 val description : String? = null ,
291- val taxes : List <BaseOrderItemTax >? = null
297+ val taxes : List <HandlingFeeTax >? = null
292298 )
293299
294300 data class UtmData (
Original file line number Diff line number Diff line change @@ -246,6 +246,13 @@ data class FetchedOrder(
246246 }
247247 }
248248
249+
250+ data class HandlingFeeTax (
251+ override val name : String? = null ,
252+ override val value : Double? = null ,
253+ override val total : Double? = null
254+ ) : BaseOrderTax
255+
249256 data class ProductDimensions (
250257 val length : Double? = null ,
251258 val width : Double? = null ,
@@ -307,7 +314,7 @@ data class FetchedOrder(
307314 val value : Double? = null ,
308315 val valueWithoutTax : Double = 0.0 ,
309316 val description : String? = null ,
310- val taxes : List <BaseOrderItemTax > = listOf()
317+ val taxes : List <HandlingFeeTax > = listOf()
311318 )
312319
313320 data class RefundInfo (
You can’t perform that action at this time.
0 commit comments