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, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(preference: nil) ⇒ AutoRespond

Returns a new instance of AutoRespond.



2369
2370
2371
# File 'lib/stripe/params/account_create_params.rb', line 2369

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

Instance Attribute Details

#preferenceObject

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



2367
2368
2369
# File 'lib/stripe/params/account_create_params.rb', line 2367

def preference
  @preference
end