flowglad 0.1.1

(Unofficial) Rust SDK for FlowGlad - Open source billing infrastructure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Data types and models
//!
//! This module contains all the data structures used by the SDK.

pub mod common;
pub mod customer;
pub mod ids;

// Re-export commonly used types
pub use common::{Currency, Interval, ListResponse, Metadata, Money, Status, Timestamp};
pub use ids::*;

// Resource-specific types will be added as we implement each resource
// pub mod product;
// pub mod subscription;
// etc.