From 4c94e5f9101c14bfc5c6989d11ea6c855c809f0b Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 14 Sep 2019 14:19:01 -0400 Subject: update openapi spec --- src/models/save_transactions_response_data.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/models/save_transactions_response_data.rs') diff --git a/src/models/save_transactions_response_data.rs b/src/models/save_transactions_response_data.rs index 0086874..0b76b5e 100644 --- a/src/models/save_transactions_response_data.rs +++ b/src/models/save_transactions_response_data.rs @@ -9,20 +9,17 @@ */ -#[allow(unused_imports)] -use serde_json::Value; - -#[derive(Debug, Serialize, Deserialize)] +#[derive(Debug, PartialEq, Serialize, Deserialize)] pub struct SaveTransactionsResponseData { /// The transaction ids that were saved #[serde(rename = "transaction_ids")] pub transaction_ids: Vec, #[serde(rename = "transaction", skip_serializing_if = "Option::is_none")] - pub transaction: Option<::models::TransactionDetail>, + pub transaction: Option, /// If multiple transactions were specified, the transactions that were saved #[serde(rename = "transactions", skip_serializing_if = "Option::is_none")] - pub transactions: Option>, + pub transactions: Option>, /// If multiple transactions were specified, a list of import_ids that were not created because of an existing import_id found on the same account #[serde(rename = "duplicate_import_ids", skip_serializing_if = "Option::is_none")] pub duplicate_import_ids: Option>, -- cgit v1.2.3-54-g00ecf