lethean 1.2.2

Lethean VPN Marketplace API
Documentation
/*
 * Lethean VPN
 *
 * Distributed Virtual Private Marketplace
 *
 * The version of the OpenAPI document: 1.2.1
 * Contact: contact@lethean.io
 * Generated by: https://openapi-generator.tech
 */




#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct CommitMediaThumbnail {
    #[serde(rename = "width")]
    pub width: String,
    #[serde(rename = "height")]
    pub height: String,
    #[serde(rename = "url")]
    pub url: String,
}

impl CommitMediaThumbnail {
    pub fn new(width: String, height: String, url: String) -> CommitMediaThumbnail {
        CommitMediaThumbnail {
            width,
            height,
            url,
        }
    }
}