GoCardlessClient Creditor Bank Accounts API.
See https://developer.gocardless.com/api-reference/#creditor-bank-accounts for full documentation.
Summary
Functions
Eagerly collects all creditor_bank_accounts into a list across all pages.
Creates a new creditor bank accounts resource.
Disables a creditor bank account.
Retrieves a single creditor bank accounts by ID.
Lists creditor_bank_accounts with optional filter params.
Returns a lazy Stream over all pages of creditor_bank_accounts.
Updates a creditor bank accounts.
Functions
@spec collect_all(GoCardlessClient.Client.t(), map(), keyword()) :: {:ok, [map()]} | {:error, GoCardlessClient.APIError.t() | GoCardlessClient.Error.t()}
Eagerly collects all creditor_bank_accounts into a list across all pages.
@spec create(GoCardlessClient.Client.t(), map(), keyword()) :: {:ok, map()} | {:error, GoCardlessClient.APIError.t() | GoCardlessClient.Error.t()}
Creates a new creditor bank accounts resource.
@spec disable(GoCardlessClient.Client.t(), String.t(), map(), keyword()) :: {:ok, map()} | {:error, GoCardlessClient.APIError.t() | GoCardlessClient.Error.t()}
Disables a creditor bank account.
@spec get(GoCardlessClient.Client.t(), String.t(), keyword()) :: {:ok, map()} | {:error, GoCardlessClient.APIError.t() | GoCardlessClient.Error.t()}
Retrieves a single creditor bank accounts by ID.
@spec list(GoCardlessClient.Client.t(), map(), keyword()) :: {:ok, %{items: [map()], meta: map()}} | {:error, GoCardlessClient.APIError.t() | GoCardlessClient.Error.t()}
Lists creditor_bank_accounts with optional filter params.
@spec stream(GoCardlessClient.Client.t(), map(), keyword()) :: Enumerable.t()
Returns a lazy Stream over all pages of creditor_bank_accounts.
@spec update(GoCardlessClient.Client.t(), String.t(), map(), keyword()) :: {:ok, map()} | {:error, GoCardlessClient.APIError.t() | GoCardlessClient.Error.t()}
Updates a creditor bank accounts.