aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/budget_detail_all_of.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/budget_detail_all_of.rs')
-rw-r--r--src/models/budget_detail_all_of.rs25
1 files changed, 11 insertions, 14 deletions
diff --git a/src/models/budget_detail_all_of.rs b/src/models/budget_detail_all_of.rs
index 90a621e..8b7da42 100644
--- a/src/models/budget_detail_all_of.rs
+++ b/src/models/budget_detail_all_of.rs
@@ -9,32 +9,29 @@
*/
-#[allow(unused_imports)]
-use serde_json::Value;
-
-#[derive(Debug, Serialize, Deserialize)]
+#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct BudgetDetailAllOf {
#[serde(rename = "accounts", skip_serializing_if = "Option::is_none")]
- pub accounts: Option<Vec<::models::Account>>,
+ pub accounts: Option<Vec<crate::models::Account>>,
#[serde(rename = "payees", skip_serializing_if = "Option::is_none")]
- pub payees: Option<Vec<::models::Payee>>,
+ pub payees: Option<Vec<crate::models::Payee>>,
#[serde(rename = "payee_locations", skip_serializing_if = "Option::is_none")]
- pub payee_locations: Option<Vec<::models::PayeeLocation>>,
+ pub payee_locations: Option<Vec<crate::models::PayeeLocation>>,
#[serde(rename = "category_groups", skip_serializing_if = "Option::is_none")]
- pub category_groups: Option<Vec<::models::CategoryGroup>>,
+ pub category_groups: Option<Vec<crate::models::CategoryGroup>>,
#[serde(rename = "categories", skip_serializing_if = "Option::is_none")]
- pub categories: Option<Vec<::models::Category>>,
+ pub categories: Option<Vec<crate::models::Category>>,
#[serde(rename = "months", skip_serializing_if = "Option::is_none")]
- pub months: Option<Vec<::models::MonthDetail>>,
+ pub months: Option<Vec<crate::models::MonthDetail>>,
#[serde(rename = "transactions", skip_serializing_if = "Option::is_none")]
- pub transactions: Option<Vec<::models::TransactionSummary>>,
+ pub transactions: Option<Vec<crate::models::TransactionSummary>>,
#[serde(rename = "subtransactions", skip_serializing_if = "Option::is_none")]
- pub subtransactions: Option<Vec<::models::SubTransaction>>,
+ pub subtransactions: Option<Vec<crate::models::SubTransaction>>,
#[serde(rename = "scheduled_transactions", skip_serializing_if = "Option::is_none")]
- pub scheduled_transactions: Option<Vec<::models::ScheduledTransactionSummary>>,
+ pub scheduled_transactions: Option<Vec<crate::models::ScheduledTransactionSummary>>,
#[serde(rename = "scheduled_subtransactions", skip_serializing_if = "Option::is_none")]
- pub scheduled_subtransactions: Option<Vec<::models::ScheduledSubTransaction>>,
+ pub scheduled_subtransactions: Option<Vec<crate::models::ScheduledSubTransaction>>,
}
impl BudgetDetailAllOf {