pub trait MonthsApi {
// Required methods
fn get_budget_month(
&self,
budget_id: &str,
month: String,
) -> Result<MonthDetailResponse, Error>;
fn get_budget_months(
&self,
budget_id: &str,
last_knowledge_of_server: Option<i64>,
) -> Result<MonthSummariesResponse, Error>;
}