fioapi 0.2.0

Async Rust client for the Fio banka REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Rust client for the Fio banka REST API.
//! Provides a small synchronous interface and helpers for parsing JSON
//! statements into typed domain models.

pub mod client;
pub mod error;
pub mod models;

pub use client::{
    AccountStatementFmt, Client, LastStatementInfo, StatementData, TransactionReportFmt,
};
pub use error::{ApiError, FioError};
pub use models::{AccountInfo, Transaction};