libstripe

Status Build Status

Stripe library for rust.

Note: Everything is subject to change but everything should be stable to use.

Example

```rust use libstripe::Client; use libstripe::resources::core::customer::{Customer, CustomerParam};

fn main() { let client = Client::new("sktest..............");

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);

} ```