//! This module contains enumerations used throughout the openfigi-rs library.
//!
//! Each submodule defines a specific enum type representing codes, types, or descriptors
//! relevant to financial instruments and identifiers, such as exchange codes, currency codes,
//! market security descriptions, and more. These enums are used for type safety and clarity
//! when interacting with the [OpenFIGI](https://www.openfigi.com/api/overview) API and related data models.
pub use ExchCode;
pub use IdType;
pub use MicCode;
pub use Currency;
pub use MarketSecDesc;
pub use SecurityType;
pub use SecurityType2;
pub use StateCode;
pub use OptionType;