/*
* 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 CertificatesEntity {
/// ID only
#[serde(rename = "id")]
pub id: f32,
}
impl CertificatesEntity {
pub fn new(id: f32) -> CertificatesEntity {
CertificatesEntity {
id,
}
}
}