Skip to content

Files

Latest commit

ece783b · Mar 12, 2025

History

History

stripe

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 12, 2025
Feb 21, 2023
Mar 12, 2025
Mar 12, 2025

dolladollabills

A fully generated, opinionated API client library for Stripe.

docs.rs

API Details

The Stripe REST API. Please see https://stripe.com/docs/api for more details.

API Terms of Service

Contact

name url email
Stripe Dev Platform Team https://stripe.com dev-platform@stripe.com

Client Details

This client is generated from the Stripe OpenAPI specs based on API spec version 2020-08-27. This way it will remain up to date as features are added. The documentation for the crate is generated along with the code to make this library easy to use.

To install the library, add the following to your Cargo.toml file.

[dependencies]
dolladollabills = "0.10.0"

Basic example

Typical use will require intializing a Client. This requires a user agent string and set of credentials.

use dolladollabills::Client;

let stripe = Client::new(
    String::from("api-key"),
);

Alternatively, the library can search for most of the variables required for the client in the environment:

  • STRIPE_API_KEY

And then you can create a client from the environment.

use dolladollabills::Client;

let stripe = Client::new_from_env();