无法通过 Stripe 删除托管帐户 API

Unable to delete a managed account via Stripe API

我正在尝试使用以下代码删除 Stripe 上的托管帐户,如 Stripe's ruby docs 中指定:

a = Stripe::Account.retrieve(account_id)
a.delete

但我收到以下错误:

NoMethodError (undefined method `delete' for #<Stripe::Account:...>):

我用的是官方的1.23.0 'stripe' gem...好像是个bug?

好像添加了deletejust recently

尝试更新您的 gem 或在您的 Gemfile 中指定 GitHub 存储库。