alat-rs 0.2.0

Unofficial, type-safe, async Rust client for the ALAT by Wema banking APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Feature modules.
//!
//! Each submodule defines the request/response types for one product area and
//! implements the corresponding endpoint methods as inherent methods on
//! [`Client`](crate::Client). Bringing that type into scope therefore makes all
//! endpoints available; the types live under their module ([`Client`](crate::Client))
//! (e.g. [`modules::transfer::TransferRequest`](transfer::TransferRequest)).

pub mod account;
pub mod bills;
pub mod statement;
pub mod transfer;
pub mod virtual_account;
pub mod wallet;
pub mod webhook;