3 releases
0.5.9 | Sep 6, 2019 |
---|---|
0.5.8 | Sep 6, 2019 |
0.5.7 | Aug 27, 2019 |
#329 in Finance
315KB
8K
SLoC
libstripe
Stripe library for rust.
Note: Everything is subject to change but everything should be stable to use.
Example
use libstripe::Client;
use libstripe::resources::core::customer::{Customer, CustomerParam};
fn main() {
let client = Client::new("sk_test_..............");
let mut param = CustomerParam::default();
param.email = Some("example@example.com");
param.description = Some("Example account");
let customer = match Customer::create(&client, param) {
Ok(cust) => cust,
Err(e) => panic!("{}", e)
};
println!("{:?}", customer);
}
Dependencies
~22–29MB
~517K SLoC