#![allow(unused_imports)]
use benchling::BenchlingClient;
use benchling::model::*;
use benchling::request::UpdateWorkflowTaskGroupRequired;
#[tokio::main]
async fn main() {
    let client = BenchlingClient::from_env();
    let args = UpdateWorkflowTaskGroupRequired {
        folder_id: "your folder id",
        workflow_task_group_id: "your workflow task group id",
        watcher_ids: &["your watcher ids"],
        name: "your name",
    };
    let response = client.update_workflow_task_group(args).send().await.unwrap();
    println!("{:#?}", response);
}