msnp11-sdk 0.12.0

An MSNP11 client SDK
Documentation
use serde::Deserialize;

#[derive(Deserialize, Debug, Clone)]
#[cfg_attr(feature = "uniffi", derive(uniffi::Record))]
pub struct Tab {
    #[serde(rename = "type")]
    pub tab_type: String,
    #[serde(rename = "contenturl")]
    pub content_url: String,
    #[serde(rename = "hiturl")]
    pub hit_url: String,
    pub image: String,
    pub name: String,
    pub tooltip: String,
    #[serde(rename = "siteid")]
    pub site_id: String,
    #[serde(rename = "notificationid")]
    pub notification_id: String,
}