Class: Belvo::LinkOptions

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

Overview

Contains the configurable properties for a Link

Instance Attribute Summary collapse

Instance Attribute Details

#access_modeObject

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

#password2Object

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

#tokenObject

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

#username2Object

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

#username3Object

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_typeObject

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