Class: Stripe::AccountSessionCreateParams::Components::PaymentMethodSettings::Features
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountSessionCreateParams::Components::PaymentMethodSettings::Features
- Defined in:
- lib/stripe/params/account_session_create_params.rb
Instance Attribute Summary collapse
-
#disable_stripe_user_authentication ⇒ Object
Whether Stripe user authentication is disabled.
Instance Method Summary collapse
-
#initialize(disable_stripe_user_authentication: nil) ⇒ Features
constructor
A new instance of Features.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, discriminator, discriminator_fields, field_encodings, new, #to_h
Constructor Details
#initialize(disable_stripe_user_authentication: nil) ⇒ Features
Returns a new instance of Features.
516 517 518 |
# File 'lib/stripe/params/account_session_create_params.rb', line 516 def initialize(disable_stripe_user_authentication: nil) @disable_stripe_user_authentication = disable_stripe_user_authentication end |
Instance Attribute Details
#disable_stripe_user_authentication ⇒ Object
Whether Stripe user authentication is disabled. This value can only be true for accounts where controller.requirement_collection is application for the account. This is false by default.
514 515 516 |
# File 'lib/stripe/params/account_session_create_params.rb', line 514 def disable_stripe_user_authentication @disable_stripe_user_authentication end |