Skip to content
This repository was archived by the owner on Mar 16, 2024. It is now read-only.

Repository files navigation

libstripe

StatusBuild Status

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};fnmain(){let client = Client::new("sk_test_..............");letmut param = CustomerParam::default();
param.email = Some("example@example.com");
param.description = Some("Example account");let customer = matchCustomer::create(&client, param){Ok(cust) => cust,Err(e) => panic!("{}", e)};println!("{:?}", customer);}

About

Rust implementation of Stripe API

Topics

Resources

Stars

5 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages