tmflib 0.1.38

Interface library for processing TMF payloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Customer  Bill Example
//!

#[cfg(all(feature = "tmf678", feature = "build-V4"))]
use tmflib::tmf678::customer_bill_v4::CustomerBill;
#[cfg(all(feature = "tmf678", feature = "build-V5"))]
use tmflib::tmf678::customer_bill_v5::CustomerBill;

fn main() {
    #[cfg(feature = "tmf678")]
    {
        let bill = CustomerBill::new();

        dbg!(bill);
    }
}