Codegen for openapi e0123a3 (#1045)

This commit is contained in:
Richard Marmorstein 2022-04-13 13:11:29 -04:00 committed by GitHub
parent 3d623c9493
commit 721a4b5660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ module Stripe
custom_method :cancel, http_verb: :post
custom_method :capture, http_verb: :post
custom_method :confirm, http_verb: :post
custom_method :increment_authorization, http_verb: :post
custom_method :verify_microdeposits, http_verb: :post
def apply_customer_balance(params = {}, opts = {})
@ -52,6 +53,15 @@ module Stripe
)
end
def increment_authorization(params = {}, opts = {})
request_stripe_object(
method: :post,
path: resource_url + "/increment_authorization",
params: params,
opts: opts
)
end
def verify_microdeposits(params = {}, opts = {})
request_stripe_object(
method: :post,