op_api_sdk/lib.rs
1//! Provides clients and data structures to work with
2//! [OP API](https://op-developer.fi)
3//!
4//! # Clients
5//!
6//! All available clients can be found from the *apis* module.
7//! Clients require specific options to send requests which
8//! are defined in the options module.
9//!
10//! # Options
11//!
12//! All calls to any of the APIs require API key which can be
13//! requested from the OP-Developer portal. For production access
14//! the requests additionally need an OAuth2 token for authorization
15//! of the user.
16
17pub mod apis;
18pub mod options;
19pub use apis::*;
20mod requests;