Class: Stripe::AccountCreateParams::Settings::SmartDisputes::AutoRespond

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(preference: nil) ⇒ AutoRespond

Returns a new instance of AutoRespond.



2336
2337
2338
# File 'lib/stripe/params/account_create_params.rb', line 2336

def initialize(preference: nil)
  @preference = preference
end

Instance Attribute Details

#preferenceObject

The preference setting for auto-respond. Can be ‘on’, ‘off’, or ‘inherit’.



2334
2335
2336
# File 'lib/stripe/params/account_create_params.rb', line 2334

def preference
  @preference
end