Class: Stripe::V2::Core::AccountCreateParams::Configuration::Merchant::CardPayments
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Configuration::Merchant::CardPayments
- Defined in:
- lib/stripe/params/v2/core/account_create_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.
788 789 790 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 788 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.
786 787 788 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 786 def decline_on @decline_on end |