x12_alt 0.1.0

Data types for X12 EDI
Documentation
use serde::{Serialize, Deserialize};
use crate::fixed::Fixed;
use super::super::codes::ProviderSpecialtyCode;
/**To provide provider specialty information

See docs at <https://www.stedi.com/edi/x12/element/C035>*/
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(tag = "code", rename = "C035")]
pub struct ProviderSpecialty {
    /**C035-01 (1222)
Code indicating the primary specialty of the provider, as defined by the receiver*/
    pub provider_specialty: ProviderSpecialtyCode,
    /**C035-02 (559)
Code identifying the agency assigning the code values*/
    pub c035_02: Option<Fixed<2>>,
    /**C035-03 (1073)
Code indicating a Yes or No condition or response*/
    pub c035_03: Option<Fixed<1>>,
}
impl ProviderSpecialty {}