mangopay v0.1.0 MangoPay.ClientWallet

Functions for MangoPay client wallets.

Link to this section Summary

Functions

All a client wallets

All a client wallets

All a client wallet by fund type

All a client wallet by fund type

Get a client wallet by fund type and currency

Get a client wallet by fund type and currency

Get path called

Get path called

Link to this section Functions

Link to this function all(query \\ %{})

All a client wallets.

Examples

{:ok, client_wallets} = MangoPay.ClientWallet.all
Link to this function all!(query \\ %{})

All a client wallets.

Examples

client_wallets = MangoPay.ClientWallet.all!
Link to this function all_by_funds_type(funds_type, query \\ %{})

All a client wallet by fund type.

Examples

{:ok, client_wallet} = MangoPay.ClientWallet.get_by_funds_type(funds_type, query)
Link to this function all_by_funds_type!(funds_type, query \\ %{})

All a client wallet by fund type.

Examples

client_wallet = MangoPay.ClientWallet.get_by_funds_type!(funds_type, query)
Link to this function get_by_funds_type_and_currency(funds_type, currency_iso_code)

Get a client wallet by fund type and currency.

Examples

{:ok, client_wallet} = MangoPay.ClientWallet.get_by_funds_type_and_currency("funds_type", "currency")
Link to this function get_by_funds_type_and_currency!(funds_type, currency_iso_code)

Get a client wallet by fund type and currency.

Examples

client_wallet = MangoPay.ClientWallet.get_by_funds_type_and_currency!("funds_type", "currency")

Get path called.

Examples

"/users" = MangoPay.User.path()

Get path called.

Examples

"/users/id" = MangoPay.User.path(id)