1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use serde_json::json;
use crate::model::*;
use crate::BenchlingClient;
pub struct BulkGetAaSequencesRequest<'a> {
    pub(crate) client: &'a BenchlingClient,
    pub aa_sequence_ids: String,
}
impl<'a> BulkGetAaSequencesRequest<'a> {
    pub async fn send(self) -> anyhow::Result<AaSequencesBulkGet> {
        let mut r = self.client.client.get("/aa-sequences:bulk-get");
        r = r.push_query("aaSequenceIds", &self.aa_sequence_ids.to_string());
        r = self.client.authenticate(r);
        let res = r.send().await.unwrap().error_for_status();
        match res {
            Ok(res) => res.json().await.map_err(|e| anyhow::anyhow!("{:?}", e)),
            Err(res) => {
                let text = res.text().await.map_err(|e| anyhow::anyhow!("{:?}", e))?;
                Err(anyhow::anyhow!("{:?}", text))
            }
        }
    }
}