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_portfolio`]. On request success, this will return a [`DeletePortfolioResponse`].*/ #[derive(Debug, Clone, Serialize, Deserialize)] pub struct DeletePortfolioRequest { pub opt_pretty: Option, pub portfolio_gid: String, } impl DeletePortfolioRequest {} impl FluentRequest<'_, DeletePortfolioRequest> { 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, DeletePortfolioRequest> { 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!( "/portfolios/{portfolio_gid}", portfolio_gid = self.params.portfolio_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) }) } }