Skip to main content

voltaria_sdk/api/
mod.rs

1//! API client and types for the Voltaria API
2//!
3//! This module contains all the API definitions including request/response types
4//! and client implementations for interacting with the API.
5//!
6//! ## Modules
7//!
8//! - [`resources`] - Service clients and endpoints
9//! - [`types`] - Request, response, and model types
10
11pub mod resources;
12pub mod types;
13
14pub use resources::{
15    AccountsClient, ApiClient, ClientsClient, CollectionsClient, DocumentsClient, DrawdownsClient,
16    InstallmentsClient, InvestorsClient, LoansClient, PartnersClient, RepaymentsClient,
17    SandboxClient, WebhooksClient,
18};
19pub use types::*;