use crate::parameters::{
binding, bootloader, cbke, configuration, green_power, messaging, mfglib, networking, security,
token_interface, trust_center, utilities, wwah, zll,
};
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum Response {
Binding(binding::Response),
Bootloader(bootloader::Response),
Cbke(cbke::Response),
Configuration(configuration::Response),
GreenPower(green_power::Response),
Messaging(messaging::Response),
MfgLib(mfglib::Response),
Networking(networking::Response),
Security(security::Response),
TokenInterface(token_interface::Response),
TrustCenter(trust_center::Response),
Utilities(utilities::Response),
Wwah(wwah::Response),
Zll(zll::Response),
}