#![allow(unused_imports)] use sendgrid2::SendgridClient; use sendgrid2::model::*; #[tokio::main] async fn main() { let client = SendgridClient::from_env(); let batch_id = "your batch id"; let status = "your status"; let response = client .patch_user_scheduled_sends_batch_id(batch_id, status) .on_behalf_of("your on behalf of") .send() .await .unwrap(); println!("{:#?}", response); }