Class: Belvo::LinkOptions
- Inherits:
-
Object
- Object
- Belvo::LinkOptions
- Defined in:
- lib/belvo/options.rb
Overview
Contains the configurable properties for a Link
Instance Attribute Summary collapse
-
#access_mode ⇒ Object
Link access mode (SINGLE or RECURRENT).
-
#password2 ⇒ Object
End-user secondary password, if any.
-
#token ⇒ Object
OTP token required by the institution.
-
#username2 ⇒ Object
End-user secondary username, if any.
-
#username3 ⇒ Object
End-user tertiary username, if any.
-
#username_type ⇒ Object
Type of the username provided.
Instance Attribute Details
#access_mode ⇒ Object
Link access mode (SINGLE or RECURRENT)
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/belvo/options.rb', line 14 class LinkOptions < Faraday::Options.new( :access_mode, :token, :username2, :username3, :password2, :username_type, :external_id ) end |
#password2 ⇒ Object
End-user secondary password, if any
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/belvo/options.rb', line 14 class LinkOptions < Faraday::Options.new( :access_mode, :token, :username2, :username3, :password2, :username_type, :external_id ) end |
#token ⇒ Object
OTP token required by the institution
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/belvo/options.rb', line 14 class LinkOptions < Faraday::Options.new( :access_mode, :token, :username2, :username3, :password2, :username_type, :external_id ) end |
#username2 ⇒ Object
End-user secondary username, if any
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/belvo/options.rb', line 14 class LinkOptions < Faraday::Options.new( :access_mode, :token, :username2, :username3, :password2, :username_type, :external_id ) end |
#username3 ⇒ Object
End-user tertiary username, if any
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/belvo/options.rb', line 14 class LinkOptions < Faraday::Options.new( :access_mode, :token, :username2, :username3, :password2, :username_type, :external_id ) end |
#username_type ⇒ Object
Type of the username provided
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/belvo/options.rb', line 14 class LinkOptions < Faraday::Options.new( :access_mode, :token, :username2, :username3, :password2, :username_type, :external_id ) end |