#![allow(unused_imports)] use sendgrid2::SendgridClient; use sendgrid2::model::*; #[tokio::main] async fn main() { let client = SendgridClient::from_env(); let response = client .get_suppression_invalid_emails() .start_time(1) .end_time(1) .limit(1) .offset(1) .on_behalf_of("your on behalf of") .send() .await .unwrap(); println!("{:#?}", response); }