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
use serde::{Serialize, Deserialize};
use crate::fixed::Fixed;
/**To identify a medical procedure by its standardized codes and applicable modifiers
See docs at <https://www.stedi.com/edi/x12/element/C003>*/
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(tag = "code", rename = "C003")]
pub struct CompositeMedicalProcedure {
/**C003-01 (235)
Code identifying the type/source of the descriptive number used in Product/Service ID (234)*/
pub composite_medical_procedure: Fixed<2>,
/**C003-02 (234)
Identifying number for a product or service*/
pub c003_02: String,
/**C003-03 (1339)
This identifies special circumstances related to the performance of the service, as defined by trading partners*/
pub c003_03: Option<Fixed<2>>,
/**C003-04 (1339)
This identifies special circumstances related to the performance of the service, as defined by trading partners*/
pub c003_04: Option<Fixed<2>>,
/**C003-05 (1339)
This identifies special circumstances related to the performance of the service, as defined by trading partners*/
pub c003_05: Option<Fixed<2>>,
/**C003-06 (1339)
This identifies special circumstances related to the performance of the service, as defined by trading partners*/
pub c003_06: Option<Fixed<2>>,
/**C003-07 (352)
A free-form description to clarify the related data elements and their content*/
pub c003_07: Option<String>,
/**C003-08 (234)
Identifying number for a product or service*/
pub c003_08: Option<String>,
/**C003-09 (1339)
This identifies special circumstances related to the performance of the service, as defined by trading partners*/
pub c003_09: Option<Fixed<2>>,
/**C003-10 (1339)
This identifies special circumstances related to the performance of the service, as defined by trading partners*/
pub c003_10: Option<Fixed<2>>,
/**C003-11 (1339)
This identifies special circumstances related to the performance of the service, as defined by trading partners*/
pub c003_11: Option<Fixed<2>>,
/**C003-12 (1339)
This identifies special circumstances related to the performance of the service, as defined by trading partners*/
pub c003_12: Option<Fixed<2>>,
}
impl CompositeMedicalProcedure {}