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>,
}