mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
* updated rubocop * manual changes * generated changes * remove commented * Add typed: true annotations to rbi * regenerate --------- Co-authored-by: David Brownman <xavdid@stripe.com>
17 lines
512 B
Ruby
17 lines
512 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class PaymentIntentRetrieveParams < Stripe::RequestParams
|
|
# The client secret of the PaymentIntent. We require it if you use a publishable key to retrieve the source.
|
|
attr_accessor :client_secret
|
|
# Specifies which fields in the response should be expanded.
|
|
attr_accessor :expand
|
|
|
|
def initialize(client_secret: nil, expand: nil)
|
|
@client_secret = client_secret
|
|
@expand = expand
|
|
end
|
|
end
|
|
end
|