Class: Stripe::AccountCreateParams::Settings::SmartDisputes::AutoRespond
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Settings::SmartDisputes::AutoRespond
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#preference ⇒ Object
The preference setting for auto-respond.
Instance Method Summary collapse
-
#initialize(preference: nil) ⇒ AutoRespond
constructor
A new instance of AutoRespond.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(preference: nil) ⇒ AutoRespond
Returns a new instance of AutoRespond.
2343 2344 2345 |
# File 'lib/stripe/params/account_create_params.rb', line 2343 def initialize(preference: nil) @preference = preference end |
Instance Attribute Details
#preference ⇒ Object
The preference setting for auto-respond. Can be ‘on’, ‘off’, or ‘inherit’.
2341 2342 2343 |
# File 'lib/stripe/params/account_create_params.rb', line 2341 def preference @preference end |