harvest_api/request/
delete_invoice.rs1use serde_json::json;
2use crate::model::*;
3use crate::HarvestClient;
4pub struct DeleteInvoiceRequest<'a> {
8 pub(crate) client: &'a HarvestClient,
9 pub invoice_id: String,
10}
11impl<'a> DeleteInvoiceRequest<'a> {
12 pub async fn send(self) -> anyhow::Result<()> {
13 let mut r = self
14 .client
15 .client
16 .delete(&format!("/invoices/{invoice_id}", invoice_id = self.invoice_id));
17 r = self.client.authenticate(r);
18 let res = r.send().await.unwrap().error_for_status();
19 match res {
20 Ok(res) => Ok(()),
21 Err(res) => {
22 let text = res.text().await.map_err(|e| anyhow::anyhow!("{:?}", e))?;
23 Err(anyhow::anyhow!("{:?}", text))
24 }
25 }
26 }
27}