Skip to content

Commit c2bb4db

Browse files
authored
Codegen for openapi v204 (stripe#1138)
1 parent 46eca72 commit c2bb4db

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

OPENAPI_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v184
1+
v204

lib/stripe/resources/refund.rb

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ module Stripe
66
# but not yet refunded. Funds will be refunded to the credit or debit card that
77
# was originally charged.
88
#
9+
# Stripe Tax users with recurring payments and invoices can create [Credit Notes](https://stripe.com/docs/api/credit_notes),
10+
# which reduce overall tax liability because tax is correctly recalculated and
11+
# apportioned to the related invoice.
12+
#
913
# Related guide: [Refunds](https://stripe.com/docs/refunds).
1014
class Refund < APIResource
1115
extend Stripe::APIOperations::Create

lib/stripe/resources/source.rb

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ module Stripe
77
# just like a `Card` object: once chargeable, they can be charged, or can be
88
# attached to customers.
99
#
10+
# Stripe doesn't recommend using the deprecated [Sources API](https://stripe.com/docs/api/sources).
11+
# We recommend that you adopt the [PaymentMethods API](https://stripe.com/docs/api/payment_methods).
12+
# This newer API provides access to our latest features and payment method types.
13+
#
1014
# Related guides: [Sources API](https://stripe.com/docs/sources) and [Sources & Customers](https://stripe.com/docs/sources/customers).
1115
class Source < APIResource
1216
extend Stripe::APIOperations::Create

0 commit comments

Comments
 (0)