Closed prathmesh-stripe closed 4 months ago
retrieve
params
opts
params = { expand: ["available"] } opts = { stripe_account: "acct_123" }
Stripe::Balance.retrieve(opts)
Stripe::Balance.retrieve(params, opts)
jruby-9.4.0.0 is failing due to unrelated reasons and will be investigated separately
Changelog
retrieve
method now requiresparams
to be passed as the first argument. Existing calls to singletonretrieve
method with onlyopts
argument will have to be updated to account for the addition ofparams
argument.❌ No longer works
Stripe::Balance.retrieve(opts)
✅ Correct way to call retrieve method
Stripe::Balance.retrieve(params, opts)