benchling 5.0.0

Benchling client, generated from the OpenAPI spec.
Documentation
#![allow(unused_imports)]
use benchling::BenchlingClient;
use benchling::model::*;
use benchling::request::CreateBlobRequired;
#[tokio::main]
async fn main() {
    let client = BenchlingClient::from_env();
    let args = CreateBlobRequired {
        data64: "your data 64",
        name: "your name",
        md5: "your md 5",
        type_: "your type",
    };
    let response = client
        .create_blob(args)
        .mime_type("your mime type")
        .send()
        .await
        .unwrap();
    println!("{:#?}", response);
}