Class: Belvo::BalanceOptions
- Inherits:
-
Object
- Object
- Belvo::BalanceOptions
- Defined in:
- lib/belvo/options.rb
Overview
Contains configurable properties of a Balance
Instance Attribute Summary collapse
-
#account ⇒ Object
Account ID (UUID).
-
#date_to ⇒ Object
Date string (YYYY-MM-DD).
-
#save_data ⇒ Object
Should data be persisted or not.
-
#token ⇒ Object
OTP token required by the institution.
Instance Attribute Details
#account ⇒ Object
Account ID (UUID)
62 63 64 65 66 67 68 |
# File 'lib/belvo/options.rb', line 62 class BalanceOptions < Faraday::Options.new( :date_to, :account, :token, :save_data ) end |
#date_to ⇒ Object
Date string (YYYY-MM-DD)
62 63 64 65 66 67 68 |
# File 'lib/belvo/options.rb', line 62 class BalanceOptions < Faraday::Options.new( :date_to, :account, :token, :save_data ) end |
#save_data ⇒ Object
Should data be persisted or not.
62 63 64 65 66 67 68 |
# File 'lib/belvo/options.rb', line 62 class BalanceOptions < Faraday::Options.new( :date_to, :account, :token, :save_data ) end |
#token ⇒ Object
OTP token required by the institution
62 63 64 65 66 67 68 |
# File 'lib/belvo/options.rb', line 62 class BalanceOptions < Faraday::Options.new( :date_to, :account, :token, :save_data ) end |