ocpi 0.3.5

Unofficial, in progress, OCPI implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use url::Url;

/// # 8.4.2. BusinessDetails class
#[derive(Clone, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub struct BusinessDetails {
    /// Name of the operator.
    pub name: super::CsString<100>,

    /// Link to the operator’s website.
    pub website: Option<Url>,

    /// Image link to the operator’s logo.
    pub logo: Option<super::Image>,
}