banking v0.1.0 Banking.Fio.TransparentAccount View Source

FIO Banka - transparent account.

Link to this section Summary

Functions

Fetch links to transparent accounts on specified page

Fetch links to all transparent accounts

Link to this section Functions

Fetch links to transparent accounts on specified page.

Examples

iex>  Banking.Fio.TransparentAccount.fetch("https://www.fio.cz/bankovni-sluzby/bankovni-ucty/transparentni-ucet/vypis-transparentnich-uctu")
[%{account: "2600088789",
   link: "https://www.fio.cz/ib2/transparent?a=2600088789",
   name: "A centrum - Váš průvodce těhotenstvím a rodičovstvím, o. p. s.",
   url: "http://www.acentrum.eu/"},
 %{account: "2800396030",
   link: "https://www.fio.cz/ib2/transparent?a=2800396030",
   name: "AA - anonymní alkoholici o.s.", url: nil},
 %{account: "2801230649",
    link: "https://www.fio.cz/ib2/transparent?a=2801230649", ...},
 %{account: "2101191407", ...}, %{...}, ...]

Fetch links to all transparent accounts.

Examples

iex> Banking.Fio.TransparentAccount.fetch_all
[%{account: "2600088789",
   link: "https://www.fio.cz/ib2/transparent?a=2600088789",
   name: "A centrum - Váš průvodce těhotenstvím a rodičovstvím, o. p. s.",
   url: "http://www.acentrum.eu/"},
 %{account: "2800396030",
   link: "https://www.fio.cz/ib2/transparent?a=2800396030",
   name: "AA - anonymní alkoholici o.s.", url: nil},
 %{account: "2801230649",
    link: "https://www.fio.cz/ib2/transparent?a=2801230649", ...},
 %{account: "2101191407", ...}, %{...}, ...]