Options.new(:params_encoder, :proxy, :bind, :timeout, :open_timeout, :write_timeout, :boundary, :oauth, :context)
# File lib/faraday/options.rb, line 207 def []=(key, value) if key && key.to_sym == :proxy super(key, value ? ProxyOptions.from(value) : nil) else super(key, value) end end