Module: Coyodlee

Defined in:
lib/coyodlee.rb,
lib/coyodlee/session.rb,
lib/coyodlee/version.rb,
lib/coyodlee/connection.rb,
lib/coyodlee/uri_builder.rb,
lib/coyodlee/session_tokens.rb,
lib/coyodlee/facades/user_facade.rb,
lib/coyodlee/session_authorization.rb,
lib/coyodlee/facades/cobrand_facade.rb,
lib/coyodlee/facades/accounts_facade.rb,
lib/coyodlee/facades/holdings_facade.rb,
lib/coyodlee/facades/transactions_facade.rb,
lib/coyodlee/facades/provider_accounts_facade.rb

Overview

The global Yodlee configuration object

Defined Under Namespace

Modules: Facades Classes: Connection, NullSessionToken, RequestBuilder, RequestFacade, Session, SessionAuthorization, SessionToken, UriBuilder

Constant Summary collapse

VERSION =
"0.2.3"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.cobrand_loginString

The login of your cobrand

Returns:

  • (String)

    The login of your cobrand



16
17
18
# File 'lib/coyodlee.rb', line 16

def 
  @cobrand_login
end

.cobrand_nameString

The cobrand name

Returns:

  • (String)

    The cobrand name



13
14
15
# File 'lib/coyodlee.rb', line 13

def cobrand_name
  @cobrand_name
end

.cobrand_passwordString

The password of your cobrand

Returns:

  • (String)

    The password of your cobrand



19
20
21
# File 'lib/coyodlee.rb', line 19

def cobrand_password
  @cobrand_password
end

A comma-separated string of FastLink App IDs

Returns:

  • (String)

    A comma-separated string of FastLink App IDs



22
23
24
# File 'lib/coyodlee.rb', line 22

def fastlink_app_ids
  @fastlink_app_ids
end

The FastLink url

Returns:

  • (String)

    The FastLink url



25
26
27
# File 'lib/coyodlee.rb', line 25

def fastlink_url
  @fastlink_url
end

.hostString

The name of the Yodlee API host

Returns:

  • (String)

    The name of the Yodlee API host



10
11
12
# File 'lib/coyodlee.rb', line 10

def host
  @host
end

Class Method Details

.setup {|config| ... } ⇒ Object

The method to configure Yodlee parameters. Use this to set the global parameters such as Yodlee.base_url, Yodlee.cobrand_login, and Yodlee.cobrand_password

Yield Parameters:

  • config (Yodlee)

    The Yodlee object



29
30
31
# File 'lib/coyodlee.rb', line 29

def setup &block
  yield self
end