Module: Plaidio
- Extended by:
- Configure
- Defined in:
- lib/plaidio.rb,
lib/plaidio/call.rb,
lib/plaidio/config.rb,
lib/plaidio/customer.rb
Defined Under Namespace
Modules: Configure Classes: Call, Customer
Constant Summary
Constants included from Configure
Instance Attribute Summary
Attributes included from Configure
Class Method Summary collapse
-
.call ⇒ Object
Defined for generic calls without access_tokens required.
-
.customer ⇒ Object
Defined when a user exists with a unique access_token.
Methods included from Configure
Class Method Details
.call ⇒ Object
Defined for generic calls without access_tokens required. Ex: Plaidio.call.add_accounts(username,password,type)
15 16 17 |
# File 'lib/plaidio.rb', line 15 def call @call = Plaidio::Call.new end |
.customer ⇒ Object
Defined when a user exists with a unique access_token. Ex: Plaidio.customer.get_transactions
10 11 12 |
# File 'lib/plaidio.rb', line 10 def customer @customer = Plaidio::Customer.new end |