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.



39
40
41
42
# File 'lib/stripe/resources/tax/association.rb', line 39

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.



35
36
37
# File 'lib/stripe/resources/tax/association.rb', line 35

def expand
  @expand
end

#payment_intentObject

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



37
38
39
# File 'lib/stripe/resources/tax/association.rb', line 37

def payment_intent
  @payment_intent
end