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 specify the location of the named party

See docs at <https://www.stedi.com/edi/x12/segment/N3>*/
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(tag = "code", rename = "N3")]
pub struct PartyLocation {
    /**N3-01 (166)
Address information*/
    pub address: String,
    /**N3-02 (166)
Address information*/
    pub n3_02: Option<String>,
}
impl PartyLocation {}