我正在尝试Stripe Api
使用Stripe.net
库更新帐户,使用 StripeAccountService
并将其存储在StripeAccount
我自己制作的类中以存储 API 返回的结果:
var accountService = new StripeAccountService("secretKey in string");
StripeRequestOptions option = new StripeRequestOptions();
option.StripeConnectAccountId = "AccountId to update";
StripeAccount x = accountService.Get(option);
x.Email = "Local@local.com";
//Then i do not know how to save changes back to api now.
但是StripeAccountService
类没有更新方法定义。我如何对帐户执行更新。
我正在使用这个库。Stripe api这里也有更新方法。