Class: Fintoc::V2::Client
- Inherits:
-
BaseClient
- Object
- BaseClient
- Fintoc::V2::Client
- Defined in:
- lib/fintoc/v2/client/client.rb
Instance Attribute Summary
Attributes inherited from BaseClient
Instance Method Summary collapse
- #account_numbers ⇒ Object
- #account_verifications ⇒ Object
- #accounts ⇒ Object
- #entities ⇒ Object
- #simulate ⇒ Object
- #transfers ⇒ Object
Methods inherited from BaseClient
#delete, #fetch_next, #get, #initialize, #patch, #post, #request, #to_s
Methods included from Utils
#flatten, #pick, #pluralize, #snake_to_pascal
Constructor Details
This class inherits a constructor from Fintoc::BaseClient
Instance Method Details
#account_numbers ⇒ Object
20 21 22 |
# File 'lib/fintoc/v2/client/client.rb', line 20 def account_numbers @account_numbers ||= Managers::AccountNumbersManager.new(self) end |
#account_verifications ⇒ Object
32 33 34 |
# File 'lib/fintoc/v2/client/client.rb', line 32 def account_verifications @account_verifications ||= Managers::AccountVerificationsManager.new(self) end |
#accounts ⇒ Object
16 17 18 |
# File 'lib/fintoc/v2/client/client.rb', line 16 def accounts @accounts ||= Managers::AccountsManager.new(self) end |
#entities ⇒ Object
12 13 14 |
# File 'lib/fintoc/v2/client/client.rb', line 12 def entities @entities ||= Managers::EntitiesManager.new(self) end |
#simulate ⇒ Object
28 29 30 |
# File 'lib/fintoc/v2/client/client.rb', line 28 def simulate @simulate ||= Managers::SimulateManager.new(self) end |
#transfers ⇒ Object
24 25 26 |
# File 'lib/fintoc/v2/client/client.rb', line 24 def transfers @transfers ||= Managers::TransfersManager.new(self) end |