sendblue 0.5.0

SendBlue is a Rust library that provides an API client for interacting with the SendBlue REST API, enabling businesses to integrate iMessage and SMS services into their applications.
1
2
3
4
5
6
7
8
9
10
11
12
//! Prelude for the Sendblue API
//!
//! This module re-exports commonly used items for convenience, including the Sendblue client,
//! error types, and various models such as messages and URLs.

pub use crate::errors::SendblueError;
pub use crate::models::{
    CallbackUrl, EvaluateService, EvaluateServiceBuilder, EvaluateServiceResponse, MediaUrl,
    Message, MessageBuilder, MessageResponse, SendStyle, Status, TypingIndicatorResponse,
    VoiceNote,
};
pub use crate::traits::Url;