tallyprime-sdk 0.2.0

Rust SDK for TallyPrime XML/HTTP integration with typed APIs for masters, vouchers, and financial reports.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Lower-level builders for Tally XML request envelopes.
//!
//! Prefer [`crate::TallyClient`] for common flows. Use [`XmlBuilder`] when you need
//! a custom export/import request (for example purchase item invoices) and then
//! send it with [`crate::TallyClient::post_xml`].

/// Constructs Tally XML envelopes for export and import requests.
pub struct XmlBuilder;

mod envelope;
mod export;
mod group;
mod helpers;
mod item_invoice;
mod ledger;
mod stock_item;
mod voucher;