Class: Belvo::TransactionOptions
- Inherits:
-
Object
- Object
- Belvo::TransactionOptions
- Defined in:
- lib/belvo/options.rb
Overview
Contains configurable properties for a Transaction
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)
41 42 43 44 45 46 47 |
# File 'lib/belvo/options.rb', line 41 class TransactionOptions < Faraday::Options.new( :date_to, :account, :token, :save_data ) end |
#date_to ⇒ Object
Date string (YYYY-MM-DD)
41 42 43 44 45 46 47 |
# File 'lib/belvo/options.rb', line 41 class TransactionOptions < Faraday::Options.new( :date_to, :account, :token, :save_data ) end |
#save_data ⇒ Object
Should data be persisted or not.
41 42 43 44 45 46 47 |
# File 'lib/belvo/options.rb', line 41 class TransactionOptions < Faraday::Options.new( :date_to, :account, :token, :save_data ) end |
#token ⇒ Object
OTP token required by the institution
41 42 43 44 45 46 47 |
# File 'lib/belvo/options.rb', line 41 class TransactionOptions < Faraday::Options.new( :date_to, :account, :token, :save_data ) end |