Skip to content

Commit 09c5a5d

Browse files
Remove unused serialization properties
1 parent 2b42ae3 commit 09c5a5d

File tree

1 file changed

+0
-4
lines changed
  • libs/fluxc-plugin/src/main/kotlin/org/wordpress/android/fluxc/model/refunds

1 file changed

+0
-4
lines changed

libs/fluxc-plugin/src/main/kotlin/org/wordpress/android/fluxc/model/refunds/WCRefundModel.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,15 @@ data class WCRefundModel(
2626
) {
2727
data class WCRefundItem(
2828
val itemId: Long,
29-
@SerializedName("qty")
3029
val quantity: Int,
31-
@SerializedName("refund_total")
3230
val subtotal: BigDecimal,
33-
@SerializedName("refund_tax")
3431
val totalTax: BigDecimal,
3532
val name: String? = null,
3633
val productId: Long? = null,
3734
val variationId: Long? = null,
3835
val total: BigDecimal? = null,
3936
val sku: String? = null,
4037
val price: BigDecimal? = null,
41-
@SerializedName("meta_data")
4238
val metaData: List<WCMetaData>? = null
4339
)
4440

0 commit comments

Comments
 (0)