x12_alt 0.1.0

Data types for X12 EDI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Serialize, Deserialize};
/**To indicate that the next segment begins a loop

See docs at <https://www.stedi.com/edi/x12/segment/LS>*/
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(tag = "code", rename = "LS")]
pub struct LoopHeader {
    /**LS-01 (447)
The loop ID number given on the transaction set diagram is the value for this data element in segments LS and LE*/
    pub loop_identifier_code: String,
}
impl LoopHeader {}