Class: Stripe::Tax::Association::FindParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/resources/tax/association.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(expand: nil, payment_intent: nil) ⇒ FindParams

Returns a new instance of FindParams.



60
61
62
63
# File 'lib/stripe/resources/tax/association.rb', line 60

def initialize(expand: nil, payment_intent: nil)
  @expand = expand
  @payment_intent = payment_intent
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



56
57
58
# File 'lib/stripe/resources/tax/association.rb', line 56

def expand
  @expand
end

#payment_intentObject

Valid [PaymentIntent](stripe.com/docs/api/payment_intents/object) id



58
59
60
# File 'lib/stripe/resources/tax/association.rb', line 58

def payment_intent
  @payment_intent
end