Class: Stripe::V2::Core::AccountUpdateParams::Configuration::Merchant::CardPayments
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountUpdateParams::Configuration::Merchant::CardPayments
- Defined in:
- lib/stripe/params/v2/core/account_update_params.rb
Defined Under Namespace
Classes: DeclineOn
Instance Attribute Summary collapse
-
#decline_on ⇒ Object
Automatically declines certain charge types regardless of whether the card issuer accepted or declined the charge.
Instance Method Summary collapse
-
#initialize(decline_on: nil) ⇒ CardPayments
constructor
A new instance of CardPayments.
Methods inherited from RequestParams
Constructor Details
#initialize(decline_on: nil) ⇒ CardPayments
Returns a new instance of CardPayments.
798 799 800 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 798 def initialize(decline_on: nil) @decline_on = decline_on end |
Instance Attribute Details
#decline_on ⇒ Object
Automatically declines certain charge types regardless of whether the card issuer accepted or declined the charge.
796 797 798 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 796 def decline_on @decline_on end |