pub mod sefaz_status {
pub const AUTHORIZED: &str = "100";
pub const CANCELLED: &str = "101";
pub const VOIDED: &str = "102";
pub const SERVICE_RUNNING: &str = "107";
pub const DENIED: &str = "110";
pub const EVENT_REGISTERED: &str = "135";
pub const EVENT_ALREADY_REGISTERED: &str = "136";
pub const AUTHORIZED_LATE: &str = "150";
pub const ALREADY_CANCELLED: &str = "155";
pub const DUPLICATE: &str = "204";
pub const DENIED_IN_DATABASE: &str = "205";
pub const DENIED_ISSUER_IRREGULAR: &str = "301";
pub const DENIED_RECIPIENT_IRREGULAR: &str = "302";
pub const DENIED_RECIPIENT_NOT_ENABLED: &str = "303";
}
pub const VALID_PROTOCOL_STATUSES: &[&str] = &[
"100", "150", "110", "205", "301", "302", "303", ];
pub const VALID_EVENT_STATUSES: &[&str] = &[
"135", "136", "155", ];