yodlee v0.1.2 Yodlee.ProviderAccount View Source

Functions for providerAccounts endpoint.

Link to this section Summary

Functions

Deletes provider account

Gets provider account by id

Lists all provider accounts associated with User session

Link to this section Types

Link to this type t() View Source
t() :: %Yodlee.ProviderAccount{
  aggregation_source: String.t(),
  created_date: String.t(),
  id: integer(),
  is_manual: boolean(),
  last_updated: String.t(),
  provider_id: integer(),
  refresh_info: Yodlee.Refreshinfo.t()
}
Link to this type user_session() View Source
user_session() :: String.t()

Link to this section Functions

Link to this function delete(session, id) View Source
delete(user_session(), String.t() | integer()) ::
  {:ok, Yodlee.ProviderAccount.t()} | {:error, error()}

Deletes provider account.

Gets provider account by id.

Link to this function list(session) View Source
list(user_session()) :: {:ok, [Yodlee.ProviderAccount.t()]} | {:error, error()}

Lists all provider accounts associated with User session.