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
16
use serde::{Serialize, Deserialize};
use crate::fixed::Fixed;
/**To specify the results of the utilization review

See docs at <https://www.stedi.com/edi/x12/segment/UR>*/
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(tag = "code", rename = "UR")]
pub struct PeerReviewOrganizationOrUtilizationReview {
    /**UR-01 (1318)
Code specifying the determination arrived at by the Utilization Review Committee or Peer Review Organization (PRO)*/
    pub approval_code: Fixed<1>,
    /**UR-02 (380)
Numeric value of quantity*/
    pub quantity: Option<String>,
}
impl PeerReviewOrganizationOrUtilizationReview {}