domo 0.3.2

The Domo Rust SDK wrapping our APIs. Also includes a CLI application.
Documentation
use std::error::Error;

use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Default)]
#[serde(default, rename_all = "camelCase")]
pub struct Message {
    /// An optional title to include with the message
    pub title: Option<String>,

    /// Markdown text
    pub text: String,
}

impl super::Client {
    /// A webhook can be created in the product.
    /// When created, a url can be obtained to post messages back into a channel
    pub async fn post_buzz_message(
        &self,
        url: &str,
        message: Message,
    ) -> Result<(), Box<dyn Error + Send + Sync + 'static>> {
        surf::post(url.to_string())
            .body(surf::Body::from_json(&message)?)
            .await?;
        Ok(())
    }
}