use serde_json::json;
use crate::model::*;
use crate::SendgridClient;
pub struct DeleteMarketingSinglesendsRequest<'a> {
pub(crate) client: &'a SendgridClient,
pub ids: Option<Vec<String>>,
}
impl<'a> DeleteMarketingSinglesendsRequest<'a> {
pub async fn send(self) -> anyhow::Result<()> {
let mut r = self.client.client.delete("/v3/marketing/singlesends");
if let Some(ref unwrapped) = self.ids {
for item in unwrapped {
r = r.push_query("ids[]", &item.to_string());
}
}
r = self.client.authenticate(r);
let res = r.send().await.unwrap().error_for_status();
match res {
Ok(res) => Ok(()),
Err(res) => {
let text = res.text().await.map_err(|e| anyhow::anyhow!("{:?}", e))?;
Err(anyhow::anyhow!("{:?}", text))
}
}
}
pub fn ids(mut self, ids: impl IntoIterator<Item = impl AsRef<str>>) -> Self {
self.ids = Some(ids.into_iter().map(|s| s.as_ref().to_owned()).collect());
self
}
}