Compare commits

...

2 Commits

Author SHA1 Message Date
pakrym-stripe
fba1349bcb
Merge branch 'beta' into latest-codegen-beta 2023-03-17 14:13:49 -07:00
Stripe OpenAPI
8d9f5b57b5 Update generated code for v266 2023-03-17 18:56:35 +00:00
2 changed files with 9 additions and 1 deletions

View File

@ -1 +1 @@
v262
v266

View File

@ -2020,6 +2020,14 @@ module Stripe
assert_requested :post, "#{Stripe.api_base}/v1/subscription_schedules/sub_sched_xxxxxxxxxxxxx"
end
end
context "Tax.Transaction.create_from_calculation" do
should "support requests with args: calculation, reference" do
Stripe::Tax::Transaction.create_from_calculation(
{ calculation: "xxx", reference: "yyy" }
)
assert_requested :post, "#{Stripe.api_base}/v1/tax/transactions/create_from_calculation"
end
end
context "TaxCode.list" do
should "support requests with args: limit" do
Stripe::TaxCode.list({ limit: 3 })