#![allow(unused_imports)]
use benchling::BenchlingClient;
use benchling::model::*;
#[tokio::main]
async fn main() {
let client = BenchlingClient::from_env();
let response = client
.list_teams()
.ids("your ids")
.name("your name")
.name_includes("your name includes")
.names_any_of("your names.any of")
.names_any_of_case_sensitive("your names.any of.case sensitive")
.modified_at("your modified at")
.mentioned_in("your mentioned in")
.organization_id("your organization id")
.has_members("your has members")
.has_admins("your has admins")
.page_size(1)
.next_token("your next token")
.sort("your sort")
.send()
.await
.unwrap();
println!("{:#?}", response);
}