macro_rules! get_attributes {
() => {
{
use crate::asterix::uap::common::datatypes::{AsterixAttribute, AttributeType};
vec![
// Attributes from 1st field
AsterixAttribute::new(1, 1, 8, 2, "Code describing the information".to_string(), "code".to_string(), AttributeType::UInt8),
]
}
};
}
pub(crate) use get_attributes;