Module: PFS::API::Services
- Included in:
- Client
- Defined in:
- lib/pfs/api/services.rb
Instance Method Summary collapse
- #accounts ⇒ Object
- #authentication ⇒ Object
- #statements ⇒ Object
- #transactions ⇒ Object
- #transfers ⇒ Object
Instance Method Details
#accounts ⇒ Object
17 18 19 |
# File 'lib/pfs/api/services.rb', line 17 def accounts @services[:accounts] ||= API::AccountsService.new(self) end |
#authentication ⇒ Object
13 14 15 |
# File 'lib/pfs/api/services.rb', line 13 def authentication @services[:authentication] ||= API::AuthenticationService.new(self) end |
#statements ⇒ Object
29 30 31 |
# File 'lib/pfs/api/services.rb', line 29 def statements @services[:statements] ||= API::StatementsService.new(self) end |
#transactions ⇒ Object
25 26 27 |
# File 'lib/pfs/api/services.rb', line 25 def transactions @services[:transactions] ||= API::TransactionsService.new(self) end |
#transfers ⇒ Object
21 22 23 |
# File 'lib/pfs/api/services.rb', line 21 def transfers @services[:transfers] ||= API::TransfersService.new(self) end |