pib-service-inventory 0.13.1

Inventory interface library to be used in pib-service
Documentation
// SPDX-FileCopyrightText: Politik im Blick developers
// SPDX-FileCopyrightText: Wolfgang Silbermayr <wolfgang@silbermayr.at>
//
// SPDX-License-Identifier: AGPL-3.0-or-later OR EUPL-1.2

use oparl_types::{DateTime, EmailAddress, Name, Url};

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct System {
    pub name: Option<Name>,
    pub license: Option<Url>,
    pub vendor: Option<Url>,
    pub product: Option<Url>,
    pub created: DateTime,
    pub modified: DateTime,
    pub contact_email: Option<EmailAddress>,
    pub contact_name: Option<Name>,
    pub website: Option<Url>,
    pub web: Option<Url>,
    pub deleted: Option<bool>,
    pub pib: pib_oparl_extensions::System,
}