1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use serde::{Serialize, Deserialize};
use super::super::elements::CompositeUnitOfMeasure;
use crate::fixed::Fixed;
/**To specify physical measurements or counts, including dimensions, tolerances, variances, and weights
(See X12 EDI Standard Figures, https://figures.x12.org, for example of use of C001)
See docs at <https://www.stedi.com/edi/x12/segment/MEA>*/
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(tag = "code", rename = "MEA")]
pub struct Measurements {
/**MEA-01 (737)
Code identifying the broad category to which a measurement applies*/
pub measurement_reference_id_code: Option<Fixed<2>>,
/**MEA-02 (738)
Code identifying a specific product or process characteristic to which a measurement applies*/
pub measurement_qualifier: Option<String>,
/**MEA-03 (739)
The value of the measurement*/
pub measurement_value: Option<String>,
/**MEA-04 (C001)
To identify a composite unit of measure
(See X12 EDI Standard Figures, https://figures.x12.org, for examples of use)*/
pub composite_unit_of_measure: Option<CompositeUnitOfMeasure>,
/**MEA-05 (740)
The value specifying the minimum of the measurement range*/
pub range_minimum: Option<String>,
/**MEA-06 (741)
The value specifying the maximum of the measurement range*/
pub range_maximum: Option<String>,
/**MEA-07 (935)
Code indicating the benchmark of, qualify or further define a measurement value*/
pub measurement_significance_code: Option<Fixed<2>>,
/**MEA-08 (936)
Code indicating an attribute response when a numeric measurement value cannot be determined*/
pub measurement_attribute_code: Option<Fixed<2>>,
/**MEA-09 (752)
Code indicating the product surface, layer or position that is being described*/
pub surface_layer_position_code: Option<Fixed<2>>,
/**MEA-10 (1373)
Code indicating the method or device used to record the measurement*/
pub measurement_method_or_device_code: Option<String>,
/**MEA-11 (1270)
Code identifying a specific industry code list*/
pub code_list_qualifier_code: Option<String>,
/**MEA-12 (1271)
Code indicating a code from a specific industry code list*/
pub industry_code: Option<String>,
}
impl Measurements {}