aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/month_detail_all_of.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/month_detail_all_of.rs')
-rw-r--r--src/models/month_detail_all_of.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/models/month_detail_all_of.rs b/src/models/month_detail_all_of.rs
index 0f07326..a805bba 100644
--- a/src/models/month_detail_all_of.rs
+++ b/src/models/month_detail_all_of.rs
@@ -9,19 +9,16 @@
*/
-#[allow(unused_imports)]
-use serde_json::Value;
-
-#[derive(Debug, Serialize, Deserialize)]
+#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct MonthDetailAllOf {
/// The budget month categories. Amounts (budgeted, activity, balance, etc.) are specific to the {month} parameter specified.
#[serde(rename = "categories")]
- pub categories: Vec<::models::Category>,
+ pub categories: Vec<crate::models::Category>,
}
impl MonthDetailAllOf {
- pub fn new(categories: Vec<::models::Category>) -> MonthDetailAllOf {
+ pub fn new(categories: Vec<crate::models::Category>) -> MonthDetailAllOf {
MonthDetailAllOf {
categories: categories,
}