We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f0eed5 commit a972405Copy full SHA for a972405
1 file changed
api/v3/handlers/customers/credits/convert.go
@@ -352,8 +352,8 @@ func toAPIBillingCreditTransaction(tx customerbalance.CreditTransaction) api.Bil
352
After api.Numeric `json:"after"`
353
Before api.Numeric `json:"before"`
354
}{
355
- Before: api.Numeric(tx.Balance.Before.String()),
356
- After: api.Numeric(tx.Balance.After.String()),
+ Before: tx.Balance.Before.String(),
+ After: tx.Balance.After.String(),
357
},
358
}
359
0 commit comments