dolladollabills

Crates.iodolladollabills
lib.rsdolladollabills
version0.7.0
sourcesrc
created_at2022-04-05 02:06:43.846365
updated_at2023-07-19 18:36:14.351018
descriptionA fully generated & opinionated API client for the Stripe API.
homepage
repositoryhttps://github.com/oxidecomputer/third-party-api-clients/tree/main/stripe
max_upload_size
id562387
size2,788,964
(oxideservicebot)

documentation

https://docs.rs/dolladollabills/

README

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.7.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();
Commit count: 0

cargo fmt