tallyprime-sdk 0.1.0

Rust SDK for TallyPrime XML/HTTP integration with typed APIs for masters, vouchers, and financial reports.
Documentation
#[derive(Debug, Clone)]
pub struct TrialBalanceEntry {
    pub name: String,
    pub debit: Option<f64>,
    pub credit: Option<f64>,
}

#[derive(Debug, Clone)]
pub struct BalanceSheetEntry {
    pub name: String,
    pub main_amount: Option<f64>,
    pub sub_amount: Option<f64>,
}

#[derive(Debug, Clone)]
pub struct ProfitAndLossEntry {
    pub name: String,
    pub main_amount: Option<f64>,
    pub sub_amount: Option<f64>,
}