stripe-ruby/lib/stripe/params/customer_payment_source_verify_params.rb
helenye-stripe 3919242336
⚠️ Unify resource and service method parameters into one class (#1670)
* updated rubocop

* manual changes

* generated changes

* remove commented

* Add typed: true annotations to rbi

* regenerate

---------

Co-authored-by: David Brownman <xavdid@stripe.com>
2025-09-29 17:54:48 -07:00

17 lines
489 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
class CustomerPaymentSourceVerifyParams < Stripe::RequestParams
# Two positive integers, in *cents*, equal to the values of the microdeposits sent to the bank account.
attr_accessor :amounts
# Specifies which fields in the response should be expanded.
attr_accessor :expand
def initialize(amounts: nil, expand: nil)
@amounts = amounts
@expand = expand
end
end
end