retarus 0.1.0

The official Rust SDK provided by Retarus to contact our messaging services with the lightning speed of the rust programming language.
Documentation
use serde::{Serialize, Deserialize};

use super::report::Report;


/// Represents the response that will be sent by the server if it returns a 200 or 201. 
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct FaxJobResponse{
    pub job_id: String
}
#[derive(Debug, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct BulkGet {
    pub reports: Vec<Report>
}

#[serde(rename_all = "camelCase")]
#[derive(Debug, Clone, Deserialize,Serialize)]
pub struct DeletedReport {
    pub job_id: String,
    pub deleted: bool,
    pub readon: Option<String>
}

#[serde(rename_all = "camelCase")]
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct BulkDelete {
    pub reports: Vec<DeletedReport>
}