jortt 0.1.0

Async Rust SDK for the Jortt API with typed modules, hybrid OAuth helpers, and raw operation escape hatch
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Model namespace.

pub mod common;
pub mod customers;
pub mod invoices;
pub mod ledger_accounts;

pub use common::{DataEnvelope, Links, ListEnvelope, Money};
pub use customers::{Customer, ListCustomersQuery, ListCustomersResponse, UpsertCustomerRequest};
pub use invoices::{
    CreateInvoiceRequest, Invoice, InvoiceDownload, InvoiceLineItemRequest, ListInvoicesQuery,
    ListInvoicesResponse,
};
pub use ledger_accounts::{LedgerAccount, ListLedgerAccountsResponse};