x12_alt 0.1.0

Data types for X12 EDI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Serialize, Deserialize};
/**To identify standard industry codes

See docs at <https://www.stedi.com/edi/x12-005010/segment/LQ>*/
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(tag = "code", rename = "LQ")]
pub struct IndustryCodeIdentification {
    /**LQ-01 (1270)
Code identifying a specific industry code list*/
    pub code_list_qualifier_code: Option<String>,
    /**LQ-02 (1271)
Code indicating a code from a specific industry code list*/
    pub industry_code: Option<String>,
}
impl IndustryCodeIdentification {}