【发布时间】:2018-02-26 20:50:15
【问题描述】:
为什么payfort(Payment Gateway) 只接受整数作为Charge or Refund Amount?如果我选择货币->USD 并希望收到十进制的金额 (20.50$)
错误:
{
"amount": [
"must be an integer"
],
"card": []
}
【问题讨论】:
标签: c# validation payfort
为什么payfort(Payment Gateway) 只接受整数作为Charge or Refund Amount?如果我选择货币->USD 并希望收到十进制的金额 (20.50$)
错误:
{
"amount": [
"must be an integer"
],
"card": []
}
【问题讨论】:
标签: c# validation payfort
Payfort 以美分计算金额。因此,如果您想要 20.50 美元,请传递以下值:
2050
【讨论】: