opentalk-types-common 0.42.3

Common types and traits for OpenTalk crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

//! Data types for handling tariffs.

mod quota_type;
mod tariff_id;
mod tariff_module_resource;
mod tariff_resource;
mod tariff_status;

pub use quota_type::QuotaType;
pub use tariff_id::TariffId;
pub use tariff_module_resource::TariffModuleResource;
pub use tariff_resource::TariffResource;
pub use tariff_status::{TariffStatus, TariffStatusType};