Class: Stripe::PaymentMethodConfigurationUpdateParams::Card
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethodConfigurationUpdateParams::Card
- Defined in:
- lib/stripe/params/payment_method_configuration_update_params.rb
Defined Under Namespace
Classes: DisplayPreference
Instance Attribute Summary collapse
-
#display_preference ⇒ Object
Whether or not the payment method should be displayed.
Instance Method Summary collapse
-
#initialize(display_preference: nil) ⇒ Card
constructor
A new instance of Card.
Methods inherited from RequestParams
Constructor Details
#initialize(display_preference: nil) ⇒ Card
Returns a new instance of Card.
256 257 258 |
# File 'lib/stripe/params/payment_method_configuration_update_params.rb', line 256 def initialize(display_preference: nil) @display_preference = display_preference end |
Instance Attribute Details
#display_preference ⇒ Object
Whether or not the payment method should be displayed.
254 255 256 |
# File 'lib/stripe/params/payment_method_configuration_update_params.rb', line 254 def display_preference @display_preference end |