diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index dcc9835ee..0e2fd6c97 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v287 \ No newline at end of file +v294 \ No newline at end of file diff --git a/lib/stripe/resources/account_session.rb b/lib/stripe/resources/account_session.rb index 386dfaeeb..b05040e1a 100644 --- a/lib/stripe/resources/account_session.rb +++ b/lib/stripe/resources/account_session.rb @@ -2,13 +2,13 @@ # frozen_string_literal: true module Stripe - # An AccountSession allows a Connect platform to grant access to a connected account in Connect embedded UIs. + # An AccountSession allows a Connect platform to grant access to a connected account in Connect embedded components. # - # We recommend that you create an AccountSession each time you need to display an embedded UI + # We recommend that you create an AccountSession each time you need to display an embedded component # to your user. Do not save AccountSessions to your database as they expire relatively # quickly, and cannot be used more than once. # - # Related guide: [Connect embedded UIs](https://stripe.com/docs/connect/get-started-connect-embedded-uis). + # Related guide: [Connect embedded components](https://stripe.com/docs/connect/get-started-connect-embedded-components). class AccountSession < APIResource extend Stripe::APIOperations::Create diff --git a/lib/stripe/resources/tax/calculation.rb b/lib/stripe/resources/tax/calculation.rb index 19e00fe08..57f5bc7c4 100644 --- a/lib/stripe/resources/tax/calculation.rb +++ b/lib/stripe/resources/tax/calculation.rb @@ -3,7 +3,9 @@ module Stripe module Tax - # A Tax `Calculation` allows you to calculate the tax to collect from your customer. + # A Tax Calculation allows you to calculate the tax to collect from your customer. + # + # Related guide: [Calculate tax in your custom payment flow](https://stripe.com/docs/tax/custom). class Calculation < APIResource extend Stripe::APIOperations::Create diff --git a/lib/stripe/resources/tax/transaction.rb b/lib/stripe/resources/tax/transaction.rb index f6c18857e..f66864fa7 100644 --- a/lib/stripe/resources/tax/transaction.rb +++ b/lib/stripe/resources/tax/transaction.rb @@ -3,7 +3,9 @@ module Stripe module Tax - # A Tax transaction records the tax collected from or refunded to your customer. + # A Tax Transaction records the tax collected from or refunded to your customer. + # + # Related guide: [Calculate tax in your custom payment flow](https://stripe.com/docs/tax/custom#tax-transaction). class Transaction < APIResource OBJECT_NAME = "tax.transaction"