payway 0.1.0

Unofficial Rust SDK for ABA PayWay Payment Gateway
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Types Module

pub mod checkout;
pub mod cof;
pub mod common;
pub mod payout;
pub mod preauth;
pub mod qr;

pub use checkout::*;
pub use cof::*;
pub use common::*;
pub use payout::*;
pub use preauth::*;
pub use qr::*;