Class: Belvo::AccountOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/belvo/options.rb

Overview

Contains the configurable properties for an Account

Instance Attribute Summary collapse

Instance Attribute Details

#save_dataObject

Should data be persisted or not.



29
30
31
32
33
# File 'lib/belvo/options.rb', line 29

class AccountOptions < Faraday::Options.new(
  :save_data,
  :token
)
end

#tokenObject

OTP token required by the institution



29
30
31
32
33
# File 'lib/belvo/options.rb', line 29

class AccountOptions < Faraday::Options.new(
  :save_data,
  :token
)
end