条纹连接应用费差异 [英] Stripe Connect Application Fee Discrepancy

查看:65
本文介绍了条纹连接应用费差异的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以,我不确定这是编码错误还是我对Stripe Connect进程的误解,但我正在尝试使用Stripe .NET包装器进行收费。我的代码如下:



So, I'm not sure if this is a coding error or a misunderstanding of the Stripe Connect process on my part, but I'm trying to make a charge using the Stripe .NET wrapper. My code is below:

int chargeAmount = 2014;
int appFee = 1986;

var stripeChargeOption = new StripeChargeCreateOptions()
                            {
                                AmountInCents = chargeAmount,
                                Currency = "cad",
                                Card = stripeToken.Id,
                                Description = "Your Purchase with Coupons4Giving - " + info.Merchant.Name,
                                ApplicationFeeInCents = appFee
                            };
                            var response = stripeService.Create(stripeChargeOption);





问题是,当我去查看实际经历的内容时,这些值与我在此调用中指定的值不同。在条纹方面,它显示申请费为19.26美元(20.14美元减去条纹费用2.9%+ 0.30美元)。



谁能告诉我为什么申请费用是$ 20.14,而不是我试图指定的19.86美元?



谢谢!



The problem is when I go and look at what's actually gone through, the values differ from what I specify in this call. On Stripe's side, it shows the Application Fee as being $19.26 (which is $20.14 minus Stripe's fee of 2.9% + $0.30).

Can anyone tell me why my Application Fee is $20.14 instead of the $19.86 I've attempted to specify?

Thanks!

推荐答案

19.26(这是


20.14减去Stripe的费用2.9%+
20.14 minus Stripe's fee of 2.9% +


0.30)。



谁能告诉我为什么我的申请费
0.30).

Can anyone tell me why my Application Fee is


这篇关于条纹连接应用费差异的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆