made-api 0.8.0

Published contract of the embedded MADE: versioned views, capabilities and errors
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

use crate::BudgetBalance;

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct BudgetReport {
    pub account_id: String,
    pub balance: BudgetBalance,
}