#![allow(unused_imports)] use stripe::StripeClient; use stripe::model::*; #[tokio::main] async fn main() { let client = StripeClient::from_env(); let quote = "your quote"; let response = client .get_quotes_quote_computed_upfront_line_items(quote) .ending_before("your ending before") .expand(&["your expand"]) .limit(1) .starting_after("your starting after") .await .unwrap(); println!("{:#?}", response); }