Skip to content

Commit

Permalink
Update generated code for v601
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Oct 13, 2023
1 parent ee08e19 commit 81e27ab
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v599
v601
2 changes: 1 addition & 1 deletion lib/stripe/resources/issuing/token.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module Stripe
module Issuing
# An issuing token object is created when an issued card is added to a digital wallet. As a [card issuer](https://stripe.com/docs/issuing), you can view and manage these tokens through Stripe.
# An issuing token object is created when an issued card is added to a digital wallet. As a [card issuer](https://stripe.com/docs/issuing), you can [view and manage these tokens](https://stripe.com/docs/issuing/controls/token-management) through Stripe.
class Token < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
20 changes: 20 additions & 0 deletions test/stripe/generated_examples_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,26 @@ class CodegennedExampleTest < Test::Unit::TestCase
Stripe::Account.list_external_accounts("acct_xxxxxxxxxxxxx", { limit: 3 })
assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_xxxxxxxxxxxxx/external_accounts?limit=3"
end
should "support requests with args: object, limit, parent_id" do
Stripe::Account.list_external_accounts(
"acct_xxxxxxxxxxxxx",
{
object: "bank_account",
limit: 3,
}
)
assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_xxxxxxxxxxxxx/external_accounts?object=bank_account&limit=3"
end
should "support requests with args: object, limit, parent_id2" do
Stripe::Account.list_external_accounts(
"acct_xxxxxxxxxxxxx",
{
object: "card",
limit: 3,
}
)
assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_xxxxxxxxxxxxx/external_accounts?object=card&limit=3"
end
end
context "ExternalAccount.update" do
should "support requests with args: metadata, parent_id, id" do
Expand Down

0 comments on commit 81e27ab

Please sign in to comment.