sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod client;
mod core;
pub mod environment;
pub mod models;
pub mod resources;
pub use client::SidekoClient;
pub use core::{
    response::BinaryResponse, error::{ApiError, Error},
    patch::Patch, upload_file::UploadFile,
};
pub use environment::Environment;
pub type SdkResult<T> = Result<T, crate::core::error::Error>;