use serde_json::json; use crate::model::*; use crate::FluentRequest; use serde::{Serialize, Deserialize}; use httpclient::InMemoryResponseExt; use crate::AsanaClient; /**You should use this struct via [`AsanaClient::delete_webhook`]. On request success, this will return a [`DeleteWebhookResponse`].*/ #[derive(Debug, Clone, Serialize, Deserialize)] pub struct DeleteWebhookRequest { pub opt_pretty: Option, pub webhook_gid: String, } impl DeleteWebhookRequest {} impl FluentRequest<'_, DeleteWebhookRequest> { pub fn opt_pretty(mut self, opt_pretty: bool) -> Self { self.params.opt_pretty = Some(opt_pretty); self } } impl<'a> ::std::future::IntoFuture for FluentRequest<'a, DeleteWebhookRequest> { type Output = httpclient::InMemoryResult; type IntoFuture = ::futures::future::BoxFuture<'a, Self::Output>; fn into_future(self) -> Self::IntoFuture { Box::pin(async move { let url = &format!( "/webhooks/{webhook_gid}", webhook_gid = self.params.webhook_gid ); let mut r = self.client.client.delete(url); r = r.set_query(self.params); r = self.client.authenticate(r); let res = r.await?; res.json().map_err(Into::into) }) } }