starling_webhooks/lib.rs
1//! Type definitions for dealing with Starling webhook payloads.
2//!
3//! Strict types such as `Uuid` and `DateTime<Utc>` are used where possible, with custom enums used
4//! for fields that have specific possible values.
5//!
6//! The Starling webhook documentation can be found
7//! [here](https://developer.starlingbank.com/docs#api-reference-temp).
8
9#[macro_use]
10extern crate serde;
11
12pub mod schema;
13
14pub use schema::*;