#![allow(unused_imports)] use harvest_api::HarvestClient; use harvest_api::model::*; #[tokio::main] async fn main() { let client = HarvestClient::from_env(); let invoice_id = "your invoice id"; let response = client .update_invoice(invoice_id) .client_id(1) .retainer_id(1) .estimate_id(1) .number("your number") .purchase_order("your purchase order") .tax(1.0) .tax2(1.0) .discount(1.0) .subject("your subject") .notes("your notes") .currency("your currency") .issue_date("your issue date") .due_date("your due date") .payment_term("your payment term") .line_items(vec![::serde_json::json!({})]) .send() .await .unwrap(); println!("{:#?}", response); }