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, DocumentsClient, DrawdownsClient, InstallmentsClient,
16    InvestorsClient, LoansClient, PartnersClient, RepaymentsClient, SandboxClient, WebhooksClient,
17};
18pub use types::*;